-
Bug
-
Resolution: Fixed
-
Trivial
-
3.1.3
-
None
-
None
In phpbb\db\driver\mysqli.php, the following lines:
// Mysqli extension supports persistent connection since PHP 5.3.0
|
$this->persistency = (version_compare(PHP_VERSION, '5.3.0', '>=')) ? $persistency : false;
|
can be replaced with:
$this->persistency = $persistency;
in sql_connect().