diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2010-02-14 19:26:34 -0800 |
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2010-02-14 19:26:34 -0800 |
| commit | 409121942590e12692eaf4e6e9e8b71bfe5ed60c (patch) | |
| tree | b7dc7ce68fa89008a583b01b4e4f79445d2e8788 /modules/user/views/admin_users.html.php | |
| parent | 667d65aea460ea601858c54976495d294d93f017 (diff) | |
Fix for ticket #491: Make user and group names translatable.
Also fixed a UI bug: No longer showing the edit user buttons to admins in the profile view (to be consistent with the requirements in the controller).
Diffstat (limited to 'modules/user/views/admin_users.html.php')
| -rw-r--r-- | modules/user/views/admin_users.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/views/admin_users.html.php b/modules/user/views/admin_users.html.php index 270a7207..69d97547 100644 --- a/modules/user/views/admin_users.html.php +++ b/modules/user/views/admin_users.html.php @@ -78,7 +78,7 @@ <?= html::clean($user->name) ?> </td> <td> - <?= html::clean($user->full_name) ?> + <?= t(html::clean($user->full_name)) ?> </td> <td> <?= html::clean($user->email) ?> |
