summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-07-24 06:52:35 +0000
committerDries Buytaert <dries@buytaert.net>2008-07-24 06:52:35 +0000
commit34626ed280a8042c81c6f1327a7622486a701c44 (patch)
tree9a1268cb6df54adc00ac73a05d5f2facf977cdd3 /modules/syslog/syslog.module
parent43a70352e69bf1cf43766bd16c28482d983c8e06 (diff)
downloadbrdo-34626ed280a8042c81c6f1327a7622486a701c44.tar.gz
brdo-34626ed280a8042c81c6f1327a7622486a701c44.tar.bz2
- Patch #238600 by scor: removed two unused links from context-sentive help.
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index b1ad2d41d..04fe995b5 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -44,9 +44,7 @@ function syslog_admin_settings() {
'#default_value' => variable_get('syslog_facility', DEFAULT_SYSLOG_FACILITY),
'#options' => syslog_facility_list(),
'#description' => t('Select the syslog facility code under which Drupal\'s messages should be sent. On UNIX/Linux systems, Drupal can flag its messages with the code LOG_LOCAL0 through LOG_LOCAL7; for Microsoft Windows, all messages are flagged with the code LOG_USER. Depending on the system configuration, syslog and other logging tools use this code to identify or filter Drupal messages from within the entire system log. For more information on syslog, see <a href="@syslog_help">Syslog help</a>.', array(
- '@syslog_help' => url('admin/help/syslog'),
- '!php' => l("PHP's syslog", 'http://www.php.net/manual/en/function.openlog.php', array('external' => TRUE)),
- '!syslog_conf' => l('UNIX/Linux syslog.conf', 'http://www.rt.com/man/syslog.5.html', array('external' => TRUE)))),
+ '@syslog_help' => url('admin/help/syslog'))),
);
return system_settings_form($form);
}