summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-17 20:37:32 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-09-17 20:37:32 +0000
commit893942bb4f0ab6261ea5ea39a5331ab021b392d4 (patch)
tree83c7b4de879c473b93557e168d8383607fe8a222 /modules/system
parentfb577596044efb049a0ea74c7c74f7f5ebcd91d2 (diff)
downloadbrdo-893942bb4f0ab6261ea5ea39a5331ab021b392d4.tar.gz
brdo-893942bb4f0ab6261ea5ea39a5331ab021b392d4.tar.bz2
#108979 by ewhipple, catch, and sun: Order permissions consistently, keep node type related permissions together.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 87ad201ab..30bc90980 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -166,11 +166,11 @@ function system_theme() {
function system_perm() {
return array(
'administer site configuration' => t('Configure site-wide settings such as module or theme administration settings.'),
- 'access administration pages' => t('View the administration panel and browse the help system.'),
'administer actions' => t('Manage the actions defined for your site.'),
+ 'administer files' => t('Manage user-uploaded files.'),
+ 'access administration pages' => t('View the administration panel and browse the help system.'),
'access site reports' => t('View reports from system logs and other status information.'),
'select different theme' => t('Select a theme other than the default theme set by the site administrator.'),
- 'administer files' => t('Manage user-uploaded files.'),
'block IP addresses' => t('Block IP addresses from accessing your site.'),
);
}