git-svn-id: file:///svn/phpbb/trunk@6989 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-02-15 21:51:54 +00:00
parent cecdbaa4c3
commit a014f237de

View file

@ -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)