Removed unnecessary empty string

This commit is contained in:
Tobias Reich 2016-03-24 21:51:34 +01:00
parent 6a28693add
commit bff454ffc9

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($connection->connect_error);
if (self::setCharset($connection)===false) Response::error('Could not set database charset!');