diff modules/syslog/syslog.module @ 9:acef7ccb09b5 6.4

Drupal 6.4
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:32:08 +0100
parents 2427550111ae
children
line wrap: on
line diff
--- a/modules/syslog/syslog.module	Tue Dec 23 14:30:28 2008 +0100
+++ b/modules/syslog/syslog.module	Tue Dec 23 14:32:08 2008 +0100
@@ -1,5 +1,5 @@
 <?php
-// $Id: syslog.module,v 1.14.2.1 2008/04/09 21:11:49 goba Exp $
+// $Id: syslog.module,v 1.14.2.2 2008/07/24 06:52:43 dries Exp $
 
 /**
  * @file
@@ -44,9 +44,7 @@
     '#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);
 }