summaryrefslogtreecommitdiff
path: root/modules/syslog/syslog.module
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-13 09:34:40 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-13 09:34:40 +0000
commitc6d841c0963ff151232c2ae23b997a5b36c680eb (patch)
tree7c0b7779cb9919be9371533022c6ee658b464ffc /modules/syslog/syslog.module
parent2325fd5105462d8f3403c5aaf382d633f77cd373 (diff)
downloadbrdo-c6d841c0963ff151232c2ae23b997a5b36c680eb.tar.gz
brdo-c6d841c0963ff151232c2ae23b997a5b36c680eb.tar.bz2
#197297 by DanW (as GHOP 17), and keith.smith: clean up lots of help texts, update to drag and drop functionality, drupal.module removal, etc
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 58ff3e7ce..5e154b459 100644
--- a/modules/syslog/syslog.module
+++ b/modules/syslog/syslog.module
@@ -19,7 +19,7 @@ else {
function syslog_help($path, $arg) {
switch ($path) {
case 'admin/help#syslog':
- $output = '<p>'. t('Enables Drupal to send messages to the operating system\'s logging facility.') .'</p>';
+ $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('For more information please read the handbook <a href="@syslog">Syslog page</a>.', array('@syslog' => 'http://drupal.org/handbook/modules/syslog')) .'</p>';
return $output;