diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-16 17:09:23 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-16 17:09:23 +0000 |
commit | ef8735614fdc50ad1512027dcb1ea84f67becb3a (patch) | |
tree | b7878147b6973cc71bc348e7b4565da6b4ad661c /modules/watchdog.module | |
parent | e5f2c1ef0e6745017acf5e57c9e2913b21d6f2e4 (diff) | |
download | brdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.gz brdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.bz2 |
- Improvements: XHTML-ifications. Patch by GmbH. See feature #1813.
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r-- | modules/watchdog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module index 97cbf14ec..957aae8c7 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -57,7 +57,7 @@ function watchdog_overview($type) { while ($watchdog = db_fetch_object($result)) { if ($background = $color[$watchdog->type]) { - $data .= " <tr bgcolor=\"$background\"><td>". format_date($watchdog->timestamp, "small") ."</td><td>". substr(strip_tags($watchdog->message), 0, 64) ."</td><td style=\"text-align: center;\">". format_name($watchdog) ."</td><td style=\"text-align: center;\">$watchdog->link</td><td style=\"text-align: center;\">". l(t("view details"), "admin/watchdog/view/$watchdog->wid") ."</td></tr>"; + $data .= " <tr style=\"background-color: $background\"><td>". format_date($watchdog->timestamp, "small") ."</td><td>". substr(strip_tags($watchdog->message), 0, 64) ."</td><td style=\"text-align: center;\">". format_name($watchdog) ."</td><td style=\"text-align: center;\">$watchdog->link</td><td style=\"text-align: center;\">". l(t("view details"), "admin/watchdog/view/$watchdog->wid") ."</td></tr>"; } } |