mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
git-svn-id: file:///svn/phpbb/trunk@6989 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
cecdbaa4c3
commit
a014f237de
1 changed files with 8 additions and 1 deletions
|
@ -616,7 +616,14 @@ class mysql_extractor extends base_extractor
|
|||
|
||||
if ($new_extract === null)
|
||||
{
|
||||
$new_extract = version_compare($db->mysql_version, '3.23.20', '>=');
|
||||
if ($db->sql_layer === 'mysqli' || version_compare($db->mysql_version, '3.23.20', '>='))
|
||||
{
|
||||
$new_extract = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
$new_extract = false;
|
||||
}
|
||||
}
|
||||
|
||||
if ($new_extract)
|
||||
|
|
Loading…
Add table
Reference in a new issue