aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/driver/postgres.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2012-12-24 14:33:05 +0100
committerMarc Alexander <admin@m-a-styles.de>2012-12-24 14:33:05 +0100
commit46b3c3ecc43721e53c9711a196e91c300e03a1c8 (patch)
treec936edfeb531760c3667a41c40799dd6bb61bb80 /phpBB/includes/db/driver/postgres.php
parente444f5bf2a8b30aefb3700ce358d2a6be66c8cb5 (diff)
parent21b9ac6c880cbee7c8bda263871b24414671672a (diff)
downloadforums-46b3c3ecc43721e53c9711a196e91c300e03a1c8.tar
forums-46b3c3ecc43721e53c9711a196e91c300e03a1c8.tar.gz
forums-46b3c3ecc43721e53c9711a196e91c300e03a1c8.tar.bz2
forums-46b3c3ecc43721e53c9711a196e91c300e03a1c8.tar.xz
forums-46b3c3ecc43721e53c9711a196e91c300e03a1c8.zip
Merge branch 'develop' of https://github.com/phpbb/phpbb3 into develop
Diffstat (limited to 'phpBB/includes/db/driver/postgres.php')
-rw-r--r--phpBB/includes/db/driver/postgres.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/driver/postgres.php b/phpBB/includes/db/driver/postgres.php
index 147ecd04d9..cca97c9c0e 100644
--- a/phpBB/includes/db/driver/postgres.php
+++ b/phpBB/includes/db/driver/postgres.php
@@ -211,7 +211,7 @@ class phpbb_db_driver_postgres extends phpbb_db_driver
if ($cache_ttl)
{
$this->open_queries[(int) $this->query_result] = $this->query_result;
- $this->query_result = $cache->sql_save($query, $this->query_result, $cache_ttl);
+ $this->query_result = $cache->sql_save($this, $query, $this->query_result, $cache_ttl);
}
else if (strpos($query, 'SELECT') === 0 && $this->query_result)
{