summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-16 17:09:23 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-16 17:09:23 +0000
commitef8735614fdc50ad1512027dcb1ea84f67becb3a (patch)
treeb7878147b6973cc71bc348e7b4565da6b4ad661c /update.php
parente5f2c1ef0e6745017acf5e57c9e2913b21d6f2e4 (diff)
downloadbrdo-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.php4
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");
}