From 3c61a382bb497b7fb3a44bc75366cd0addc891aa Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 27 Feb 2003 22:49:59 +0000 Subject: [PATCH] - Bugfix: there was an errant tag with no opening tag. Patch by Al. --- modules/watchdog.module | 2 +- modules/watchdog/watchdog.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/watchdog.module b/modules/watchdog.module index 65d7dd6a3f7..d8ecf3a3a67 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -50,7 +50,7 @@ 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") .""; } } diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 65d7dd6a3f7..d8ecf3a3a67 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -50,7 +50,7 @@ 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") .""; } }