1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-25 20:45:16 +02:00

[ticket/10875] Fix phpbb_mock_cache::sql_save() to return $query_result.

PHPBB3-10875
This commit is contained in:
Andreas Fischer
2012-08-26 18:45:20 +02:00
parent e28f0aa336
commit 59af4d68fc

View File

@ -123,6 +123,7 @@ class phpbb_mock_cache implements phpbb_cache_driver_interface
}
public function sql_save($query, $query_result, $ttl)
{
return $query_result;
}
public function sql_exists($query_id)
{