Skip to content

Commit d7ad8f3

Browse files
author
Marius Cramer
committed
- fixed mysql lib again
1 parent cb61973 commit d7ad8f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/lib/mysql.lib.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function __destruct() {
7777
if($this->_iConnId) mysqli_close($this->_iConnId);
7878
}
7979

80-
private function connect() {
80+
private function do_connect() {
8181
if($this->_iConnId) return true;
8282

8383
$this->_iConnId = mysqli_connect($this->dbHost, $this->dbUser, $this->dbPass);
@@ -180,7 +180,7 @@ private function _setCharset() {
180180
private function _query($sQuery = '') {
181181
global $app;
182182

183-
$this->connect();
183+
$this->do_connect();
184184

185185
//if($this->isConnected == false) return false;
186186
if ($sQuery == '') {

0 commit comments

Comments
 (0)