From: Roland Haeder Date: Mon, 18 Aug 2014 07:39:27 +0000 (+0200) Subject: Check for valid database connection object. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fe6fad2c69897945c12c18ec4d81005ad6f3384d;p=quix0rs-gnu-social.git Check for valid database connection object. Signed-off-by: Roland Haeder --- diff --git a/lib/installer.php b/lib/installer.php index 97886b40c5..04d8bb8f35 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -320,6 +320,11 @@ abstract class Installer } } + if (!$conn instanceof DB_common) { + // Is not the right instance + throw new Exception('Cannot connect to database: ' . $conn->getMessage()); + } + $res = $this->updateStatus("Creating database tables..."); if (!$this->createCoreTables($conn)) { $this->updateStatus("Error creating tables.", true);