diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-12 16:10:54 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-10-12 16:10:54 +0000 |
commit | 2c4a82bda243a006af96cb76be0c0500b4c3a47b (patch) | |
tree | cf68e2c0d1bc4155e432d58e8ca112afcb05607c /modules/user.module | |
parent | 7a536c06d41ccfef114525296b96e1078f9c72cb (diff) | |
download | brdo-2c4a82bda243a006af96cb76be0c0500b4c3a47b.tar.gz brdo-2c4a82bda243a006af96cb76be0c0500b4c3a47b.tar.bz2 |
#11503: (more) missing t()
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user.module b/modules/user.module index 2fec399f0..952659c00 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1393,7 +1393,7 @@ function user_admin_perm($edit = array()) { } // Render role/permission overview: - $header = array_merge(array('permission'), $role_names); + $header = array_merge(array(t('permission')), $role_names); foreach (module_list() as $module) { if ($perms = module_invoke($module, 'perm')) { |