From a279978718c6d21523b5603fde6cf67a91d5ca8c Mon Sep 17 00:00:00 2001 From: David M Date: Mon, 24 Apr 2006 22:13:52 +0000 Subject: - 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 --- phpBB/includes/db/postgres.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/includes/db/postgres.php') 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; } /** -- cgit v1.2.1