From 56e60eb06f8ae051ee7272ff4577ae38ce60a2ce Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Mon, 8 Mar 2010 02:41:46 +0000 Subject: [PATCH] #594412 by mrfelton: Correctly label all site-owning super-admin permissions. --- modules/node/node.module | 1 + modules/system/system.module | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/node/node.module b/modules/node/node.module index fe5ae95074f9..6d5cdc85ed2e 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 00046d8ab4dd..c95003aa1729 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'), -- GitLab