Fix error 500 on database connect error

If `$connection===false` it obviously has no properties.
This commit is contained in:
Felix Eckhofer 2016-04-24 16:07:55 +02:00
parent a8a7b15198
commit aa0209afef

View File

@ -56,7 +56,7 @@ final class Database {
$connection = self::connect($host, $user, $password);
// Check if the connection was successful
if ($connection===false) Response::error($connection->connect_error);
if ($connection===false) Response::error(self::connect_error());
if (self::setCharset($connection)===false) Response::error('Could not set database charset!');
@ -90,6 +90,13 @@ final class Database {
}
/**
* @return string Returns the string description of the last connect error
*/
public static function connect_error() {
return mysqli_connect_error();
}
/**
* @return boolean Returns true when successful.
*/