From 2ca28725f433314081cb70c1bc84f902df357723 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 14 May 2001 15:10:31 +0000 Subject: [PATCH] Fixed some more issues git-svn-id: file:///svn/phpbb/trunk@294 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/postgres7.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/db/postgres7.php b/phpBB/db/postgres7.php index e2178d4347..1dbe22fd40 100644 --- a/phpBB/db/postgres7.php +++ b/phpBB/db/postgres7.php @@ -382,8 +382,8 @@ class sql_db if(!$query_id){ $query_id = $this->query_result; } - $result[message] = @pg_errormessage($query_id); - $result[code] = -1; + $result['message'] = @pg_errormessage($this->db_connect_id); + $result['code'] = -1; return $result; }