diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-02-17 12:59:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-02-17 12:59:24 +0000 |
commit | 52a1d1bbe80422ca7a8c79dde6fd92db542b9b2d (patch) | |
tree | 1dfcddc91c4b41071dcfa3b8d876d8b370551e97 /modules/watchdog.module | |
parent | e7f043c30afbfef8301e0dcd9a9c597432ef2bad (diff) | |
download | brdo-52a1d1bbe80422ca7a8c79dde6fd92db542b9b2d.tar.gz brdo-52a1d1bbe80422ca7a8c79dde6fd92db542b9b2d.tar.bz2 |
- More updates on the translation support
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 81593d4c0..f1bb7925f 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -50,7 +50,7 @@ function watchdog_view($id) { if ($watchdog = db_fetch_object($result)) { $output .= "<TABLE BORDER=\"1\" CELLPADDING=\"3\" CELLSPACING=\"0\">\n"; $output .= " <TR><TD ALIGN=\"right\"><B>Level:</B></TD><TD>$watchdog->level</TD></TR>\n"; - $output .= " <TR><TD ALIGN=\"right\"><B>Date:</B></TD><TD>". format_date($watchdog->timestamp, "extra large") ."</TD></TR>\n"; + $output .= " <TR><TD ALIGN=\"right\"><B>Date:</B></TD><TD>". format_date($watchdog->timestamp, "large") ."</TD></TR>\n"; $output .= " <TR><TD ALIGN=\"right\"><B>User:</B></TD><TD>". format_username($watchdog->userid) ."</TD></TR>\n"; $output .= " <TR><TD ALIGN=\"right\"><B>Location:</B></TD><TD>$watchdog->location</TD></TR>\n"; $output .= " <TR><TD ALIGN=\"right\"><B>Message:</B></TD><TD>$watchdog->message</TD></TR>\n"; |