🐛 fix Cannot connect to the MySQL server for the CI's unattended_install

This commit is contained in:
bruno DA SILVA
2020-03-20 15:15:13 +01:00
parent 466ddf768e
commit 18c4ca9131

View File

@@ -101,7 +101,7 @@ if ($sMode == 'install')
$oMysqli = new mysqli($sDBServer, $sDBUser, $sDBPwd);
if ($oMysqli->connect_errno)
{
die("Cannot connect to the MySQL server (".$mysqli->connect_errno . ") ".$mysqli->connect_error."\nExiting");
die("Cannot connect to the MySQL server (".$oMysqli->connect_errno . ") ".$oMysqli->connect_error."\nExiting");
}
else
{