Skip to content

Commit 7d41f01

Browse files
author
Till Brehm
committed
Fixed #5429 Wrong class variable in server/lib/classes/db_mysql.inc.php LINE 275
1 parent 5d261ed commit 7d41f01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interface/lib/classes/db_mysql.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ private function _query($sQuery = '') {
272272
if(!is_object($this->_iConnId)) {
273273
$this->_iConnId = mysqli_init();
274274
}
275-
if(!mysqli_real_connect($this->_isConnId, $this->dbHost, $this->dbUser, $this->dbPass, $this->dbName, (int)$this->dbPort, NULL, $this->dbClientFlags)) {
275+
if(!mysqli_real_connect($this->_iConnId, $this->dbHost, $this->dbUser, $this->dbPass, $this->dbName, (int)$this->dbPort, NULL, $this->dbClientFlags)) {
276276
if(mysqli_connect_errno() == '111') {
277277
// server is not available
278278
if($try > 9) {

server/lib/classes/db_mysql.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ private function _query($sQuery = '') {
272272
if(!is_object($this->_iConnId)) {
273273
$this->_iConnId = mysqli_init();
274274
}
275-
if(!mysqli_real_connect($this->_isConnId, $this->dbHost, $this->dbUser, $this->dbPass, $this->dbName, (int)$this->dbPort, NULL, $this->dbClientFlags)) {
275+
if(!mysqli_real_connect($this->_iConnId, $this->dbHost, $this->dbUser, $this->dbPass, $this->dbName, (int)$this->dbPort, NULL, $this->dbClientFlags)) {
276276
if(mysqli_connect_errno() == '111') {
277277
// server is not available
278278
if($try > 9) {

0 commit comments

Comments
 (0)