aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/postgres.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-04-24 22:13:52 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-04-24 22:13:52 +0000
commita279978718c6d21523b5603fde6cf67a91d5ca8c (patch)
tree1a0e1925c57fca440ed8d6ab6decb2cdcef8c067 /phpBB/includes/db/postgres.php
parentb622c0f31a67b76aa6c97ba5ccad9ae221c0c033 (diff)
downloadforums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar
forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar.gz
forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar.bz2
forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar.xz
forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.zip
- Tuples? Nah,
- Install works w/ Oracle - Got the queries in the database acp to conform to the CS - profile acp now creates the proper alter column statement depending on the dbal git-svn-id: file:///svn/phpbb/trunk@5842 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/postgres.php')
-rw-r--r--phpBB/includes/db/postgres.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/postgres.php
index eb8c931fa5..d9e8bc2bfa 100644
--- a/phpBB/includes/db/postgres.php
+++ b/phpBB/includes/db/postgres.php
@@ -222,7 +222,7 @@ class dbal_postgres extends dbal
*/
function sql_affectedrows()
{
- return ($this->query_result) ? @pg_cmdtuples($this->query_result) : false;
+ return ($this->query_result) ? @pg_affected_rows($this->query_result) : false;
}
/**