summaryrefslogtreecommitdiff
path: root/modules/watchdog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-23 18:42:43 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-23 18:42:43 +0000
commitb85eb11e113396490720572d11d30cd83c772ba1 (patch)
treec40775ddc2808a40651323d2e35800e5f31305df /modules/watchdog.module
parentce803acecb4b695567d77d5219218d5ae2b100f4 (diff)
downloadbrdo-b85eb11e113396490720572d11d30cd83c772ba1.tar.gz
brdo-b85eb11e113396490720572d11d30cd83c772ba1.tar.bz2
Patch 5287 by Stefan: multiline help texts should become inside a single $output.
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r--modules/watchdog.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module
index ab51af984..0ba8a131a 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -6,9 +6,9 @@ function watchdog_help($section = "admin/help#watchdog") {
switch ($section) {
case 'admin/help#watchdog':
- $output .= "<p>Watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to <a href=\"%watchdog\">check the watchdog report</a> on a regular basis as it is often the only way to tell what is going on.</p>";
- $output .= "<p>To ease administration, the watchdog will automatically discard old log entries, <a href=\"%log-entry\">as configured</a>. Needs \"cron.php\" to discard the entries.</p>";
- $output = t($output, array("%watchdog" => url("admin/watchdog"), "%log-entry" => url("admin/system/modules/watchdog")));
+ $output .= t("
+ <p>Watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to <a href=\"%watchdog\">check the watchdog report</a> on a regular basis as it is often the only way to tell what is going on.</p>
+ <p>To ease administration, the watchdog will automatically discard old log entries, <a href=\"%log-entry\">as configured</a>. Needs \"cron.php\" to discard the entries.</p>", array("%watchdog" => url("admin/watchdog"), "%log-entry" => url("admin/system/modules/watchdog")));
break;
case 'admin/watchdog':
$output = t("The watchdog module monitors your web site, captures system events in a log and records them to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of events recorded during operation and contains usage data, performance data, errors, warnings and operational information. It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.");