- Fixed bug #3383: broken admin help of the watchdog module. Patch by

Jonathan.
4.3.x
Dries Buytaert 2003-09-30 15:10:48 +00:00
parent d12e8997c1
commit 13f12eb417
2 changed files with 4 additions and 0 deletions

View File

@ -2,9 +2,11 @@
// $Id$
function watchdog_help($section = "admin/help") {
$output = "";
switch ($section) {
case "admin/help":
case "admin/watchdog/help":
$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 ". l("check the Watchdog report", "admin/watchdog") ." 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, ". l("as configured", "admin/system/modules/watchdog") .". Needs \"cron.php\" to discard the entries.</p>";
break;

View File

@ -2,9 +2,11 @@
// $Id$
function watchdog_help($section = "admin/help") {
$output = "";
switch ($section) {
case "admin/help":
case "admin/watchdog/help":
$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 ". l("check the Watchdog report", "admin/watchdog") ." 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, ". l("as configured", "admin/system/modules/watchdog") .". Needs \"cron.php\" to discard the entries.</p>";
break;