diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-22 09:44:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-22 09:44:56 +0000 |
commit | bb54be48b923c4639bed87fd2f289d9d88739bd2 (patch) | |
tree | 7ac0ebe6912b6b183b1aff134ae0efe9a75c59cb /modules/system/system.module | |
parent | bee1240231163d8eb9806eaf700c9b2694046d85 (diff) | |
download | brdo-bb54be48b923c4639bed87fd2f289d9d88739bd2.tar.gz brdo-bb54be48b923c4639bed87fd2f289d9d88739bd2.tar.bz2 |
- Patch rollback of #549432: tests didn't actually ran successfully.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 21008d47c..bd98c8606 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -138,7 +138,7 @@ function system_help($path, $arg) { return $output; case 'admin/settings/actions/configure': return t('An advanced action offers additional configuration options which may be filled out below. Changing the <em>Description</em> field is recommended, in order to better identify the precise action taking place. This description will be displayed in modules such as the trigger module when assigning actions to system events, so it is best if it is as descriptive as possible (for example, "Send e-mail to Moderation Team" rather than simply "Send e-mail").'); - case 'admin/config/people/ip-blocking': + case 'admin/settings/ip-blocking': return '<p>' . t('IP addresses listed here are blocked from your site before any modules are loaded. You may add IP addresses to the list, or delete existing entries.') . '</p>'; case 'admin/reports/status': return '<p>' . t("Here you can find a short overview of your site's parameters as well as any problems detected with your installation. It may be useful to copy and paste this information into support requests filed on drupal.org's support forums and project issue queues.") . '</p>'; @@ -660,20 +660,20 @@ function system_menu() { ); // IP address blocking. - $items['admin/config/people/ip-blocking'] = array( + $items['admin/settings/ip-blocking'] = array( 'title' => 'IP address blocking', 'description' => 'Manage blocked IP addresses.', 'page callback' => 'system_ip_blocking', 'access arguments' => array('block IP addresses'), ); - $items['admin/config/people/ip-blocking/%'] = array( + $items['admin/settings/ip-blocking/%'] = array( 'title' => 'IP address blocking', 'description' => 'Manage blocked IP addresses.', 'page callback' => 'system_ip_blocking', 'access arguments' => array('block IP addresses'), 'type' => MENU_CALLBACK, ); - $items['admin/config/people/ip-blocking/delete/%blocked_ip'] = array( + $items['admin/settings/ip-blocking/delete/%blocked_ip'] = array( 'title' => 'Delete IP address', 'page callback' => 'drupal_get_form', 'page arguments' => array('system_ip_blocking_delete', 4), |