diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2013-05-10 06:13:24 -0400 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2013-05-10 06:13:24 -0400 |
commit | d4c07930d51244c8ae5014344c9502d010954448 (patch) | |
tree | d6e4815e0c895fdd00089a95a223456f6ba01756 /include/dba/dba_driver.php | |
parent | e1c6b776c4c388b4671c0838c9d24feac42857c2 (diff) | |
download | volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.tar.gz volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.tar.bz2 volse-hubzilla-d4c07930d51244c8ae5014344c9502d010954448.zip |
add $db_port to .htconfig.php and $a->config['syste]['smarty3_folder'] for compiled templates
Diffstat (limited to 'include/dba/dba_driver.php')
-rwxr-xr-x[-rw-r--r--] | include/dba/dba_driver.php | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index 1091b9632..abc759adc 100644..100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -1,15 +1,17 @@ <?php /** @file */ -function dba_factory($server,$user,$pass,$db,$install = false) { +function dba_factory($server, $port,$user,$pass,$db,$install = false) { $dba = null; if(class_exists('mysqli')) { + if (is_null($port)) $port = ini_get("mysqli.default_port"); require_once('include/dba/dba_mysqli.php'); - $dba = new dba_mysqli($server,$user,$pass,$db,$install); + $dba = new dba_mysqli($server, $port,$user,$pass,$db,$install); } else { + if (is_null($port)) $port = "3306"; require_once('include/dba/dba_mysql.php'); - $dba = new dba_mysql($server,$user,$pass,$db,$install); + $dba = new dba_mysql($server, $port,$user,$pass,$db,$install); } return $dba; @@ -23,16 +25,16 @@ abstract class dba_driver { public $connected = false; public $error = false; - abstract function connect($server,$user,$pass,$db); + abstract function connect($server, $port, $user,$pass,$db); abstract function q($sql); abstract function escape($str); abstract function close(); - function __construct($server,$user,$pass,$db,$install = false) { - if(($install) && (! $this->install($server,$user,$pass,$db))) { + function __construct($server, $port, $user,$pass,$db,$install = false) { + if(($install) && (! $this->install($server, $port, $user,$pass,$db))) { return; } - $this->connect($server,$user,$pass,$db); + $this->connect($server, $port, $user,$pass,$db); } |