diff options
Diffstat (limited to 'modules/watchdog')
-rw-r--r-- | modules/watchdog/watchdog.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 0ba8a131a..54b58c7ec 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -38,7 +38,7 @@ function watchdog_help($section = "admin/help#watchdog") { $output = t("Logs and records system events."); break; case 'admin/system/modules/watchdog': - $output = t("Watchdog logs your system events. To see these logs go to <a href=\"%watchdog\">messages</a>. Since these logs can grow out of control if kept around forever, below set how long an item should be kept in the log. Note that to discard entries as set below you must run \"cron.php\" regularly.", array("%watchdog" => url("admin/watchdog"))); + $output = t("Watchdog logs your system events. To see these events go to the <a href=\"%watchdog\">logs</a>. Since these logs can grow out of control if kept around forever, below set how long an item should be kept in the log. Note that to discard entries as set below you must run \"cron.php\" regularly.", array("%watchdog" => url("admin/watchdog"))); break; } @@ -52,7 +52,7 @@ function watchdog_perm() { function watchdog_link($type) { if ($type == "system") { if (user_access("administer watchdog")) { - menu("admin/watchdog", t("messages"), "watchdog_admin", 6); + menu("admin/watchdog", t("logs"), "watchdog_admin", 7); menu("admin/watchdog/view", t("view details"), "watchdog_admin", 0, MENU_HIDE); foreach (_watchdog_get_message_types() as $type) { |