summaryrefslogtreecommitdiff
path: root/modules/watchdog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-11-23 22:20:41 +0000
committerDries Buytaert <dries@buytaert.net>2004-11-23 22:20:41 +0000
commit9574766ad8f8810baf42a81ae105984254f0fc0a (patch)
tree12a5015957b5d6cdb3c4f24680a5bf23bab0e67c /modules/watchdog
parente19a3cf42d73942e37ca644f8ba5fa271b983e3d (diff)
downloadbrdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.gz
brdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.bz2
- Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve consistency.
Diffstat (limited to 'modules/watchdog')
-rw-r--r--modules/watchdog/watchdog.module16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 75ee5ef4c..15f2afef7 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -20,21 +20,21 @@ function watchdog_help($section = 'admin/help#watchdog') {
case 'admin/help#watchdog':
return t('<p>The 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>', array('%watchdog' => url('admin/logs')));
case 'admin/logs':
- return t('The 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 check the watchdog report on a regular basis as it is often the only way to tell what is going on.');
+ return t('<p>The 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 check the watchdog report on a regular basis as it is often the only way to tell what is going on.</p>');
case 'admin/logs/error':
- return t('Watchdog events about PHP and database errors.');
+ return t('<p>Watchdog events about PHP and database errors.</p>');
case 'admin/logs/httpd':
- return t('Watchdog events that are from the web server, like 404s, etc.');
+ return t('<p>Watchdog events that are from the web server, like 404s, etc.</p>');
case 'admin/logs/regular':
- return t('Watchdog events that are "normal" and have no other classification.');
+ return t('<p>Watchdog events that are "normal" and have no other classification.</p>');
case 'admin/logs/search':
- return t('Watchdog events showing what users have searched for.');
+ return t('<p>Watchdog events showing what users have searched for.</p>');
case 'admin/logs/special':
- return t('Watchdog events about adding, changing, and moderating nodes and comments.');
+ return t('<p>Watchdog events about adding, changing, and moderating nodes and comments.</p>');
case 'admin/logs/user':
- return t('Watchdog events that have to do with users and their accounts.');
+ return t('<p>Watchdog events that have to do with users and their accounts.</p>');
case 'admin/logs/warning':
- return t('Watchdog events that don\'t stop normal operation, but are things you should know.');
+ return t('<p>Watchdog events that don\'t stop normal operation, but are things you should know.</p>');
case 'admin/modules#description':
return t('Logs and records system events.');
}