summaryrefslogtreecommitdiffstats
path: root/inc/lib_base.php
diff options
context:
space:
mode:
authorCharlyCoste <contact@ccoste.fr>2010-03-14 00:58:59 +0100
committerCharlyCoste <contact@ccoste.fr>2010-03-14 00:58:59 +0100
commitdf612293fd8c70407843a76a5c73ff8530528a73 (patch)
treeaef4b86cc17ae8af623d5b39d5d1b334e6f80ca1 /inc/lib_base.php
parentd672bb88623974aeb1f22e62c7894e8365f4d5e9 (diff)
downloadnextcloud-server-df612293fd8c70407843a76a5c73ff8530528a73.tar.gz
nextcloud-server-df612293fd8c70407843a76a5c73ff8530528a73.zip
bgcolor is not a valid "xhtml1.0 strict" attribute. Replacing it by a css background-color
Diffstat (limited to 'inc/lib_base.php')
-rwxr-xr-xinc/lib_base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/lib_base.php b/inc/lib_base.php
index 1ae2bdab877..38821eed88c 100755
--- a/inc/lib_base.php
+++ b/inc/lib_base.php
@@ -190,7 +190,7 @@ class OC_DB {
$DBConnection = @new mysqli($CONFIG_DBHOST, $CONFIG_DBUSER, $CONFIG_DBPWD,$CONFIG_DBNAME);
if (mysqli_connect_errno()) {
@ob_end_clean();
- echo('<html><head></head><body bgcolor="#F0F0F0"><br /><br /><center><b>can not connect to database.</center></body></html>');
+ echo('<html><head></head><body class="error"><br /><br /><center><b>can not connect to database.</center></body></html>');
exit();
}
}