From eb030cb9d8839bd08cb2bd1e4f954efe37047303 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 15 Jun 2003 19:06:25 +0000 Subject: - Improvements: XHTML-ifications. Patch by GmbH. --- modules/watchdog.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/watchdog.module') diff --git a/modules/watchdog.module b/modules/watchdog.module index fec7bd867..97cbf14ec 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -57,14 +57,14 @@ function watchdog_overview($type) { while ($watchdog = db_fetch_object($result)) { if ($background = $color[$watchdog->type]) { - $data .= " ". format_date($watchdog->timestamp, "small") ."". substr(strip_tags($watchdog->message), 0, 64) ."". format_name($watchdog) ."$watchdog->link". l(t("view details"), "admin/watchdog/view/$watchdog->wid") .""; + $data .= " ". format_date($watchdog->timestamp, "small") ."". substr(strip_tags($watchdog->message), 0, 64) ."". format_name($watchdog) ."$watchdog->link". l(t("view details"), "admin/watchdog/view/$watchdog->wid") .""; } } $output .= ""; $output .= " "; - $output .= ($data ? $data : ""); - $output .= (($pager = pager_display(NULL, 50, 0, "admin")) ? "" : ""); + $output .= ($data ? $data : ""); + $output .= (($pager = pager_display(NULL, 50, 0, "admin")) ? "" : ""); $output .= "
" . t("date") . "" . t("event") . "" . t("user") . "" . t("operations") . "
". t("No system messages currently available.") ."
$pager
". t("No system messages currently available.") ."
$pager
"; return $output; -- cgit v1.2.3