diff options
Diffstat (limited to 'includes/theme.inc')
-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; |