pass DB_PORT as string

This commit is contained in:
Andrew Dolgov 2013-04-18 15:44:25 +04:00
parent 8cb5c64d62
commit 1daf0f75fa
1 changed files with 1 additions and 1 deletions

View File

@ -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());