summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-11-24 09:01:57 +0000
committerDries Buytaert <dries@buytaert.net>2006-11-24 09:01:57 +0000
commitd721a4f0d974f93d04db19c8d1c107b9d24dd3f5 (patch)
tree33a479695c635ff1d17037e545278ec680f6451b /modules/user/user.module
parenta895b149327ab4c905fc73d87199bc8268c63916 (diff)
downloadbrdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.gz
brdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.bz2
- Patch #98365 by webchick and RobRoy: added missing t() functions.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index cbb24b078..a0decf6c8 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -619,7 +619,7 @@ function theme_user_picture($account) {
}
if (isset($picture)) {
- $alt = t('@user\'s picture', array('@user' => $account->name ? $account->name : variable_get('anonymous', 'Anonymous')));
+ $alt = t("@user's picture", array('@user' => $account->name ? $account->name : variable_get('anonymous', t('Anonymous'))));
$picture = theme('image', $picture, $alt, $alt, '', FALSE);
if (!empty($account->uid) && user_access('access user profiles')) {
$picture = l($picture, "user/$account->uid", array('title' => t('View user profile.')), NULL, NULL, FALSE, TRUE);