summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-02 09:24:09 +0200
committerErich Eckner <git@eckner.net>2018-05-02 09:24:09 +0200
commit2d8f8d193b9b4cf17b6eedd342149ff0d6ba7874 (patch)
treecf754d25ebab8975fa106a1939a8e3269b18e8f4 /lib
parente6571252647d472b59a2aafb6dc580db72d5d12a (diff)
downloadarchweb32-2d8f8d193b9b4cf17b6eedd342149ff0d6ba7874.tar.xz
lib/mysql.php: fix typo
Diffstat (limited to 'lib')
-rw-r--r--lib/mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mysql.php b/lib/mysql.php
index d595d64..ce48f73 100644
--- a/lib/mysql.php
+++ b/lib/mysql.php
@@ -22,6 +22,6 @@ function show_warning_on_offline_slave() {
$result = mysql_run_query("SHOW STATUS LIKE \"Slave_running\"");
if (($result -> num_rows == 0) ||
($result -> fetch_assoc() ["Value"] != "ON")) {
- print "<div><font color=\"fff0000\">The replication slave is currently not running. The database might be outdated.</font></div>\n";
+ print "<div><font color=\"ff0000\">The replication slave is currently not running. The database might be outdated.</font></div>\n";
}
}