From bff454ffc95be3943d4f1ff593d2c46cf2f59a3f Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Thu, 24 Mar 2016 21:51:34 +0100 Subject: [PATCH] Removed unnecessary empty string --- php/Modules/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/Modules/Database.php b/php/Modules/Database.php index 0948249..3f0d54d 100755 --- a/php/Modules/Database.php +++ b/php/Modules/Database.php @@ -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!');