aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/postgres7.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db/postgres7.php')
-rw-r--r--phpBB/db/postgres7.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/db/postgres7.php b/phpBB/db/postgres7.php
index 981439cc10..df5d8edc4c 100644
--- a/phpBB/db/postgres7.php
+++ b/phpBB/db/postgres7.php
@@ -32,6 +32,7 @@ class sql_db
var $in_transaction = 0;
var $row;
var $rownum = array();
+ var $num_queries = 0;
//
// Constructor
@@ -122,6 +123,8 @@ class sql_db
unset($this->query_result);
if($query != "")
{
+ $this->num_queries++;
+
$query = preg_replace("/LIMIT ([0-9]+),([ 0-9]+)/", "LIMIT \\2, \\1", $query);
if($transaction == BEGIN_TRANSACTION)