From de5b9a168daeef12b6f7bcf6e43b767a2d7f35d8 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Mon, 22 Apr 2002 09:05:36 +0000 Subject: - bug fixes: * fixed mails not being parsed properly. * tracker now shows user name when you view your own recent comments. * link to submission queue now points to the right place. * fixed jabber module. * theme is now activated when changed. - applied Gerhards coding style patch. --- modules/watchdog.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/watchdog.module') diff --git a/modules/watchdog.module b/modules/watchdog.module index 4a3a67705..545dd32af 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -40,7 +40,7 @@ function watchdog_overview($type) { $output .= " datemessageuseroperations"; while ($watchdog = db_fetch_object($result)) { if ($background = $color[$watchdog->type]) { - $output .= " ". format_date($watchdog->timestamp, "small") ."". substr(check_output($watchdog->message), 0, 64) ."". format_name($watchdog) ."".la(t("details"), array("mod" => "watchdog", "op" => "view", "id" => $watchdog->wid)).""; + $output .= " ". format_date($watchdog->timestamp, "small") ."". substr(check_output($watchdog->message), 0, 64) ."". format_name($watchdog) ."". la(t("details"), array("mod" => "watchdog", "op" => "view", "id" => $watchdog->wid)) .""; } } $output .= ""; @@ -79,7 +79,7 @@ function watchdog_admin() { $links[] = la(t("overview"), array("mod" => "watchdog")); $links[] = la(t("help"), array("mod" => "watchdog", "op" => "help")); - print "".implode(" | ", $links)."
"; + print "". implode(" | ", $links) ."
"; switch ($op) { case "help": -- cgit v1.2.3