aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cache/driver/null.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/cache/driver/null.php')
-rw-r--r--phpBB/includes/cache/driver/null.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/cache/driver/null.php b/phpBB/includes/cache/driver/null.php
index c143803d0e..687604d14f 100644
--- a/phpBB/includes/cache/driver/null.php
+++ b/phpBB/includes/cache/driver/null.php
@@ -107,8 +107,9 @@ class phpbb_cache_driver_null extends phpbb_cache_driver_base
/**
* Save sql query
*/
- function sql_save($query, &$query_result, $ttl)
+ function sql_save($query, $query_result, $ttl)
{
+ return $query_result;
}
/**