Skip to content
Snippets Groups Projects
Commit 5eafbcd5 authored by Marius Cramer's avatar Marius Cramer
Browse files

- don't set connect params in constructor (too early)

parent d7ad8f37
No related branches found
No related tags found
No related merge requests found
...@@ -60,10 +60,14 @@ class db extends mysqli ...@@ -60,10 +60,14 @@ class db extends mysqli
//// ////
*/ */
// constructor public function __destruct() {
public function __construct($host = NULL , $user = NULL, $pass = NULL, $database = NULL) { if($this->_iConnId) mysqli_close($this->_iConnId);
}
private function do_connect() {
global $conf; global $conf;
if($this->_iConnId) return true;
$this->dbHost = $conf["mysql"]["host"]; $this->dbHost = $conf["mysql"]["host"];
$this->dbName = ''; $this->dbName = '';
$this->dbUser = $conf["mysql"]["admin_user"]; $this->dbUser = $conf["mysql"]["admin_user"];
...@@ -71,14 +75,6 @@ class db extends mysqli ...@@ -71,14 +75,6 @@ class db extends mysqli
$this->dbCharset = $conf["mysql"]["charset"]; $this->dbCharset = $conf["mysql"]["charset"];
$this->dbNewLink = false; $this->dbNewLink = false;
$this->dbClientFlags = null; $this->dbClientFlags = null;
}
public function __destruct() {
if($this->_iConnId) mysqli_close($this->_iConnId);
}
private function do_connect() {
if($this->_iConnId) return true;
$this->_iConnId = mysqli_connect($this->dbHost, $this->dbUser, $this->dbPass); $this->_iConnId = mysqli_connect($this->dbHost, $this->dbUser, $this->dbPass);
$try = 0; $try = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment