diff options
| author | Yuriy Rusko <github@rusko.net> | 2014-05-27 21:55:40 +0200 | 
|---|---|---|
| committer | Yuriy Rusko <github@rusko.net> | 2014-05-27 21:55:40 +0200 | 
| commit | 1d61bcedfd1882f84d102c523a354a8c4ae69336 (patch) | |
| tree | cbc3aead2546002d82fa0503eaab7f1520c515b8 /phpBB/phpbb/db/driver/mysqli.php | |
| parent | 27f787e5e4e118b77a3e16879d6c684bdaafc303 (diff) | |
| parent | 0acaa7722956635b8f17e19cddc6f02a602b7352 (diff) | |
| download | forums-1d61bcedfd1882f84d102c523a354a8c4ae69336.tar forums-1d61bcedfd1882f84d102c523a354a8c4ae69336.tar.gz forums-1d61bcedfd1882f84d102c523a354a8c4ae69336.tar.bz2 forums-1d61bcedfd1882f84d102c523a354a8c4ae69336.tar.xz forums-1d61bcedfd1882f84d102c523a354a8c4ae69336.zip | |
Merge remote-tracking branch 'upstream/develop-ascraeus' into ticket/12594
Conflicts:
	phpBB/docs/hook_system.html
Diffstat (limited to 'phpBB/phpbb/db/driver/mysqli.php')
| -rw-r--r-- | phpBB/phpbb/db/driver/mysqli.php | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/phpBB/phpbb/db/driver/mysqli.php b/phpBB/phpbb/db/driver/mysqli.php index da6dcbc776..58361ff0f8 100644 --- a/phpBB/phpbb/db/driver/mysqli.php +++ b/phpBB/phpbb/db/driver/mysqli.php @@ -60,7 +60,8 @@ class mysqli extends \phpbb\db\driver\mysql_base  			}  		} -		$this->db_connect_id = @mysqli_connect($this->server, $this->user, $sqlpassword, $this->dbname, $port, $socket); +		$this->db_connect_id = mysqli_init(); +		@mysqli_real_connect($this->db_connect_id, $this->server, $this->user, $sqlpassword, $this->dbname, $port, $socket, MYSQLI_CLIENT_FOUND_ROWS);  		if ($this->db_connect_id && $this->dbname != '')  		{ | 
