diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-14 15:10:31 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-05-14 15:10:31 +0000 |
| commit | 2ca28725f433314081cb70c1bc84f902df357723 (patch) | |
| tree | c6f3c463c6a7212ae36677a35f5612087fbb3dfc /phpBB | |
| parent | ffb911d1e1160986a34fc46065299a4b832b9eb8 (diff) | |
| download | forums-2ca28725f433314081cb70c1bc84f902df357723.tar forums-2ca28725f433314081cb70c1bc84f902df357723.tar.gz forums-2ca28725f433314081cb70c1bc84f902df357723.tar.bz2 forums-2ca28725f433314081cb70c1bc84f902df357723.tar.xz forums-2ca28725f433314081cb70c1bc84f902df357723.zip | |
Fixed some more issues
git-svn-id: file:///svn/phpbb/trunk@294 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/db/postgres7.php | 4 |
1 files 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; } |
