1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-09 07:58:56 +02:00

[ticket/12570] Keep MySQLi procedural

PHPBB3-12570
This commit is contained in:
Joas Schilling 2014-05-24 13:06:25 +02:00
parent 275e56ce70
commit fcdf1101cb

View File

@ -57,8 +57,8 @@ class mysqli extends \phpbb\db\driver\mysql_base
} }
} }
$this->db_connect_id = @mysqli_init(); $this->db_connect_id = mysqli_init();
$this->db_connect_id->real_connect($this->server, $this->user, $sqlpassword, $this->dbname, $port, $socket, MYSQLI_CLIENT_FOUND_ROWS); @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 != '') if ($this->db_connect_id && $this->dbname != '')
{ {