summaryrefslogtreecommitdiff
path: root/modules/watchdog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-02-23 17:53:51 +0000
committerDries Buytaert <dries@buytaert.net>2001-02-23 17:53:51 +0000
commita1a96ca29e7e71fd7fb7cd773e084b10f7bf3deb (patch)
treed824cacd549b008b5dcdc3f3bb6a8f8d5b99ce9a /modules/watchdog.module
parent42ad4065a8573ce8005671289a101ae90ac517de (diff)
downloadbrdo-a1a96ca29e7e71fd7fb7cd773e084b10f7bf3deb.tar.gz
brdo-a1a96ca29e7e71fd7fb7cd773e084b10f7bf3deb.tar.bz2
- small changes to the watchdog module to make it more conform with other
modules - small changes to the account module to make it more conform with other modules - users can be deleted
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r--modules/watchdog.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module
index f1bb7925f..26714ed20 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -49,12 +49,12 @@ 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, "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";
- $output .= " <TR><TD ALIGN=\"right\"><B>Hostname:</B></TD><TD>$watchdog->hostname</TD></TR>\n";
+ $output .= " <TR><TH>Level:</TH><TD>$watchdog->level</TD></TR>\n";
+ $output .= " <TR><TH>Date:</TH><TD>". format_date($watchdog->timestamp, "large") ."</TD></TR>\n";
+ $output .= " <TR><TH>User:</TH><TD>". format_username($watchdog->userid) ."</TD></TR>\n";
+ $output .= " <TR><TH>Location:</TH><TD>$watchdog->location</TD></TR>\n";
+ $output .= " <TR><TH>Message:</TH><TD>$watchdog->message</TD></TR>\n";
+ $output .= " <TR><TH>Hostname:</TH><TD>$watchdog->hostname</TD></TR>\n";
$output .= "</TABLE>\n";
print $output;
}