We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb61973 commit d7ad8f3Copy full SHA for d7ad8f3
install/lib/mysql.lib.php
@@ -77,7 +77,7 @@ public function __destruct() {
77
if($this->_iConnId) mysqli_close($this->_iConnId);
78
}
79
80
- private function connect() {
+ private function do_connect() {
81
if($this->_iConnId) return true;
82
83
$this->_iConnId = mysqli_connect($this->dbHost, $this->dbUser, $this->dbPass);
@@ -180,7 +180,7 @@ private function _setCharset() {
180
private function _query($sQuery = '') {
181
global $app;
182
183
- $this->connect();
+ $this->do_connect();
184
185
//if($this->isConnected == false) return false;
186
if ($sQuery == '') {
0 commit comments