diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-17 20:37:32 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-09-17 20:37:32 +0000 |
commit | 893942bb4f0ab6261ea5ea39a5331ab021b392d4 (patch) | |
tree | 83c7b4de879c473b93557e168d8383607fe8a222 /modules/path/path.module | |
parent | fb577596044efb049a0ea74c7c74f7f5ebcd91d2 (diff) | |
download | brdo-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/path/path.module')
-rw-r--r-- | modules/path/path.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 91abb44d2..f4cb039c2 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -204,8 +204,8 @@ function path_form_alter(&$form, $form_state, $form_id) { */ function path_perm() { return array( - 'create url aliases' => t('Manage URL aliases on content.'), 'administer url aliases' => t('Manage URL aliases across the entire website.'), + 'create url aliases' => t('Manage URL aliases on content.'), ); } |