diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-11 23:52:11 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-11 23:52:11 +0000 |
commit | 82a36d5d78fce2cfe80405ea326f8be24e14fab6 (patch) | |
tree | 6bb072244571cc16c7954e6b875999658a633565 /modules/system/system.module | |
parent | 032bb0adeb0dae53e096bebcc77529fd0f5f9b27 (diff) | |
download | brdo-82a36d5d78fce2cfe80405ea326f8be24e14fab6.tar.gz brdo-82a36d5d78fce2cfe80405ea326f8be24e14fab6.tar.bz2 |
#87700 by webchick. Link to specific modules in permissions.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 0feebb396..a926e765d 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2219,7 +2219,7 @@ function system_admin_by_module() { // Check for permissions. if (module_hook($module, 'perm') && $admin_access) { - $admin_tasks[-1] = l(t('Configure permissions'), 'admin/user/access'); + $admin_tasks[-1] = l(t('Configure permissions'), 'admin/user/access', NULL, NULL, 'module-'. $module); } // Check for menu items that are admin links. |