mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00: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:
commit
d319fe1883
1 changed files with 5 additions and 0 deletions
|
@ -48,7 +48,12 @@ class phpbb_mock_cache implements phpbb_cache_driver_interface
|
||||||
|
|
||||||
if ($ignore_db_info)
|
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['mysqli_version']);
|
||||||
|
unset($cache_data['pgsql_version']);
|
||||||
|
unset($cache_data['sqlite_version']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$test->assertEquals($data, $cache_data);
|
$test->assertEquals($data, $cache_data);
|
||||||
|
|
Loading…
Add table
Reference in a new issue