1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Merge branch 'ticket/jellydoughnut/9637' into develop-olympus

* ticket/jellydoughnut/9637:
  [ticket/9637] Do not cache SQL server version in all cases
This commit is contained in:
Andreas Fischer
2010-07-11 01:44:59 +02:00
10 changed files with 52 additions and 25 deletions

View File

@@ -685,7 +685,7 @@ class install_convert extends module
// Thanks MySQL, for silently converting...
case 'mysql':
case 'mysql4':
if (version_compare($src_db->sql_server_info(true), '4.1.3', '>='))
if (version_compare($src_db->sql_server_info(true, false), '4.1.3', '>='))
{
$convert->mysql_convert = true;
}