From 1daf0f75faa32aff87db5ea5750aba33ec71c272 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 18 Apr 2013 15:44:25 +0400 Subject: [PATCH] pass DB_PORT as string --- classes/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/db.php b/classes/db.php index f31a2a9a..9b800dc2 100644 --- a/classes/db.php +++ b/classes/db.php @@ -29,7 +29,7 @@ class Db implements IDb { if (!$this->adapter) die("Error initializing database adapter for " . DB_TYPE); - $this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : false); + $this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : ""); if (!$this->link) { die("Error connecting through adapter: " . $this->adapter->last_error()); -- 2.39.2