summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-08-31 09:15:13 +0000
committerDries Buytaert <dries@buytaert.net>2008-08-31 09:15:13 +0000
commitdf4b23bfee6f6db2226da06e937687b187b521c5 (patch)
tree67fa66fbb986bc91a5fd64d57fe794e1c4857a1a /modules/syslog/syslog.module
parent835d0fc929420e234c490ab55f9e54a98d36e08a (diff)
downloadbrdo-df4b23bfee6f6db2226da06e937687b187b521c5.tar.gz
brdo-df4b23bfee6f6db2226da06e937687b187b521c5.tar.bz2
- Patch #209160 by Lilou, Takafumi: localized URL for php.net/manual links.
Diffstat (limited to 'modules/syslog/syslog.module')
-rw-r--r--modules/syslog/syslog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/syslog/syslog.module b/modules/syslog/syslog.module
index 04fe995b5..44a08a4bb 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -20,7 +20,7 @@ function syslog_help($path, $arg) {
switch ($path) {
case 'admin/help#syslog':
$output = '<p>' . t("The syslog module enables Drupal to send messages to the operating system's logging facility.") . '</p>';
- $output .= '<p>' . t('Syslog is an operating system administrative logging tool, and provides valuable information for use in system 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. On UNIX/Linux systems, the file /etc/syslog.conf defines this routing configuration; on Microsoft Windows, all messages are sent to the Event Log. For more information on syslog facilities, severity levels, and how to set up a syslog.conf file, see <a href="@syslog_conf">UNIX/Linux syslog.conf</a> and PHP\'s <a href="@php_openlog">openlog</a> and <a href="@php_syslog">syslog</a> functions.', array('@syslog_conf' => url('http://www.rt.com/man/syslog.5.html'), '@php_openlog' => url('http://www.php.net/manual/en/function.openlog.php'), '@php_syslog' => url('http://www.php.net/manual/en/function.syslog.php'))) . '</p>';
+ $output .= '<p>' . t('Syslog is an operating system administrative logging tool, and provides valuable information for use in system 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. On UNIX/Linux systems, the file /etc/syslog.conf defines this routing configuration; on Microsoft Windows, all messages are sent to the Event Log. For more information on syslog facilities, severity levels, and how to set up a syslog.conf file, see <a href="@syslog_conf">UNIX/Linux syslog.conf</a> and PHP\'s <a href="@php_openlog">openlog</a> and <a href="@php_syslog">syslog</a> functions.', array('@syslog_conf' => url('http://www.rt.com/man/syslog.5.html'), '@php_openlog' => url('http://www.php.net/manual/function.openlog.php'), '@php_syslog' => url('http://www.php.net/manual/function.syslog.php'))) . '</p>';
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@syslog">Syslog module</a>.', array('@syslog' => 'http://drupal.org/handbook/modules/syslog')) . '</p>';
return $output;
}