summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-12 21:01:16 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-12 21:01:16 +0000
commitdfb1af8935cb2db15c533f384724e830f56e425e (patch)
tree43dd7ebb47dd69a8c17c34ae905221ced83d005e
parent6aae0a3c304e71e9a178ddc599c836e2284adf91 (diff)
downloadbrdo-dfb1af8935cb2db15c533f384724e830f56e425e.tar.gz
brdo-dfb1af8935cb2db15c533f384724e830f56e425e.tar.bz2
- Patch #158904 by dmitrig01: dblog has help page at wrong path.
-rw-r--r--modules/dblog/dblog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module
index acd5a8050..39483366b 100644
--- a/modules/dblog/dblog.module
+++ b/modules/dblog/dblog.module
@@ -22,7 +22,7 @@ function dblog_help($path, $arg) {
$output .= '<p>'. t('The dblog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the dblog report on a regular basis to ensure their site is working properly.') .'</p>';
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@dblog">Dblog page</a>.', array('@dblog' => 'http://drupal.org/handbook/modules/dblog/')) .'</p>';
return $output;
- case 'admin/logs':
+ case 'admin/logs/dblog':
return '<p>'. t('The dblog module monitors your website, capturing system events in a log to be reviewed by an authorized individual at a later time. The dblog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the dblog report on a regular basis as it is often the only way to tell what is going on.') .'</p>';
}
}