diff options
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"); } |