diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-24 09:01:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-24 09:01:57 +0000 |
commit | d721a4f0d974f93d04db19c8d1c107b9d24dd3f5 (patch) | |
tree | 33a479695c635ff1d17037e545278ec680f6451b /includes | |
parent | a895b149327ab4c905fc73d87199bc8268c63916 (diff) | |
download | brdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.gz brdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.bz2 |
- Patch #98365 by webchick and RobRoy: added missing t() functions.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 16412c1cf..05b5e4815 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1028,7 +1028,7 @@ function theme_username($object) { $output .= ' ('. t('not verified') .')'; } else { - $output = variable_get('anonymous', 'Anonymous'); + $output = variable_get('anonymous', t('Anonymous')); } return $output; |