diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-03-08 02:41:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-03-08 02:41:46 +0000 |
commit | 56e60eb06f8ae051ee7272ff4577ae38ce60a2ce (patch) | |
tree | d41a3fd452a92824d64f1a1a039f277c482db581 | |
parent | 726d3af2788d4b7dc2d7eb2325ce902266c7da82 (diff) | |
download | brdo-56e60eb06f8ae051ee7272ff4577ae38ce60a2ce.tar.gz brdo-56e60eb06f8ae051ee7272ff4577ae38ce60a2ce.tar.bz2 |
#594412 by mrfelton: Correctly label all site-owning super-admin permissions.
-rw-r--r-- | modules/node/node.module | 1 | ||||
-rw-r--r-- | modules/system/system.module | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index fe5ae9507..6d5cdc85e 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1414,6 +1414,7 @@ function node_permission() { $perms = array( 'administer content types' => array( 'title' => t('Administer content types'), + 'description' => drupal_placeholder(array('text' => t('Warning: Give to trusted roles only; this permission has security implications.'))), ), 'administer nodes' => array( 'title' => t('Administer content'), diff --git a/modules/system/system.module b/modules/system/system.module index 00046d8ab..c95003aa1 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -207,6 +207,7 @@ function system_permission() { ), 'administer site configuration' => array( 'title' => t('Administer site configuration'), + 'description' => drupal_placeholder(array('text' => t('Warning: Give to trusted roles only; this permission has security implications.'))), ), 'administer themes' => array( 'title' => t('Administer themes'), |