diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-27 08:56:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-27 08:56:35 +0000 |
commit | d5aae21fa2aa0e55f270c284406014e14df07087 (patch) | |
tree | db7e65c91cf56daecfb7388b537025b4271f03a3 | |
parent | 4ffdd6dfe6348d647fd96cc5e83950276cab3237 (diff) | |
download | brdo-d5aae21fa2aa0e55f270c284406014e14df07087.tar.gz brdo-d5aae21fa2aa0e55f270c284406014e14df07087.tar.bz2 |
- Patch #73087 by beginner and Rol: fixed alt-attribute in user profile pages.
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index ad9322446..2ee95f583 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -605,7 +605,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', '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); |