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

Merge branch 'develop-olympus' into develop

* develop-olympus:
  [ticket/10088] Also ignore DBMS versions other than MySQLi in cache mock.
This commit is contained in:
Igor Wiedler
2011-03-12 18:23:47 +01:00

View File

@@ -48,7 +48,12 @@ class phpbb_mock_cache implements phpbb_cache_driver_interface
if ($ignore_db_info)
{
unset($cache_data['mssqlodbc_version']);
unset($cache_data['mssql_version']);
unset($cache_data['mysql_version']);
unset($cache_data['mysqli_version']);
unset($cache_data['pgsql_version']);
unset($cache_data['sqlite_version']);
}
$test->assertEquals($data, $cache_data);