summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-21 14:22:33 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-21 14:22:33 +0000
commit60c06921ce37fae8604b83e0ccd149f3ee3eab1e (patch)
tree6d088ab18e590b7a11b9acd6dc9962faa220d1e3 /modules/syslog/syslog.module
parent18e62bf8c5c8612f1e2bfc10cd8192e97d7eebee (diff)
downloadbrdo-60c06921ce37fae8604b83e0ccd149f3ee3eab1e.tar.gz
brdo-60c06921ce37fae8604b83e0ccd149f3ee3eab1e.tar.bz2
- Patch #291026 by Dave Reid et al: further (usability) improvements to the E_NOTICE handling.
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index 6d29e4984..ede31926a 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -28,11 +28,12 @@ function syslog_help($path, $arg) {
function syslog_menu() {
$items['admin/settings/logging/syslog'] = array(
- 'title' => 'Syslog',
- 'description' => 'Settings for syslog logging. Syslog is an operating system administrative logging tool used in systems management and security auditing. Most suited to medium and large sites, syslog provides filtering tools that allow messages to be routed by type and severity.',
- 'page callback' => 'drupal_get_form',
+ 'title' => 'Syslog logging',
+ 'description' => 'Settings for syslog logging. Syslog is an operating system administrative logging tool used in systems management and security auditing. Most suited to medium and large sites, syslog provides filtering tools that allow messages to be routed by type and severity.',
+ 'page callback' => 'drupal_get_form',
'page arguments' => array('syslog_admin_settings'),
'access arguments' => array('administer site configuration'),
+ 'type' => MENU_LOCAL_TASK,
);
return $items;
}