summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-05 13:11:19 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-05 13:11:19 +0000
commit1800ea94bfd9520ef8f95d2bbdf96ac07fbe20b1 (patch)
tree6fe2b5eb60b62c4f0357b90e1ce3352d02dcd298 /modules/syslog/syslog.module
parent8b72b39281354f38bbb918bb4ef9f170bac3c789 (diff)
downloadbrdo-1800ea94bfd9520ef8f95d2bbdf96ac07fbe20b1.tar.gz
brdo-1800ea94bfd9520ef8f95d2bbdf96ac07fbe20b1.tar.bz2
#144634 follow up patch by chx: two caes, where the external link property should have been specified
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index 4b9207ae3..3b30d93b4 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -40,8 +40,8 @@ function syslog_admin_settings() {
'#default_value' => variable_get('syslog_facility', DEFAULT_SYSLOG_FACILITY),
'#options' => syslog_facility_list(),
'#description' => t('Select the syslog facility to send Drupal\'s messages to. Syslog is a system administration logging tool, where messages are routed by facility and severity. It is more suitable for medium to large sites, and would not be suitable for shared hosting environments. In the file /etc/syslog.conf you define where messages go for any combination of facility and severity. For UNIX/Linux systems, Drupal can use the facilities user, local0 to local7, for Windows, you can only use the user facility. For more information on syslog facilities, severity levels, and how to setup a syslog.conf files, see !syslog_conf and !php', array(
- '!php' => l("PHP's syslog", 'http://www.php.net/manual/en/function.openlog.php'),
- '!syslog_conf' => l('UNIX/Linux syslog.conf', 'http://www.rt.com/man/syslog.5.html'),
+ '!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)),
)),
);
return system_settings_form($form);