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 /update.php | |
parent | e5f2c1ef0e6745017acf5e57c9e2913b21d6f2e4 (diff) | |
download | brdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.gz brdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.bz2 |
- Improvements: XHTML-ifications. Patch by GmbH. See feature #1813.
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update.php b/update.php index abb4489e6..f0272112a 100644 --- a/update.php +++ b/update.php @@ -769,11 +769,11 @@ function update_sql($sql) { print nl2br(htmlentities($sql)) ." "; $result = db_query($sql); if ($result) { - print "<font color=\"green\">OK</font>\n"; + print "<div style=\"color: green;\">OK</div>\n"; return 1; } else { - print "<font color=\"red\">FAILED</font>\n"; + print "<div style=\"color: red;\">FAILED</div>\n"; if ($edit["bail"]) { die("Fatal error. Bailing"); } |