diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-28 14:12:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-28 14:12:21 +0000 |
commit | 0cb7dbc25ff04d0e35ba6513384afb77bf4148f9 (patch) | |
tree | 1b9cf5eabb485345f0b5f550138aaf4b43be26ef /modules | |
parent | 5e6549f156cba06fe7dde03cf8f3274c3114f5a1 (diff) | |
download | brdo-0cb7dbc25ff04d0e35ba6513384afb77bf4148f9.tar.gz brdo-0cb7dbc25ff04d0e35ba6513384afb77bf4148f9.tar.bz2 |
- bugfix: a permission was missing from the permission table
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system.module | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module index 28503293b..16f3b3672 100644 --- a/modules/system.module +++ b/modules/system.module @@ -13,7 +13,7 @@ function system_help() { } function system_perm() { - return array("administer settings and filters"); + return array("administer settings and filters", "access administration pages"); } function system_link($type) { diff --git a/modules/system/system.module b/modules/system/system.module index 28503293b..16f3b3672 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -13,7 +13,7 @@ function system_help() { } function system_perm() { - return array("administer settings and filters"); + return array("administer settings and filters", "access administration pages"); } function system_link($type) { |