[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) public function sql_save($query, $query_result, $ttl)
{ {
return $query_result;
} }
public function sql_exists($query_id) public function sql_exists($query_id)
{ {