1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-30 04:38:21 +02:00

Switched to associative and numbered fetcharray

git-svn-id: file:///svn/phpbb/trunk@611 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-07-09 23:11:05 +00:00
parent 284b14e970
commit 8d7c6d37ec

@ -274,7 +274,7 @@ class sql_db
}
if($query_id)
{
$this->row = @pg_fetch_array($query_id, $this->rownum[$query_id], PGSQL_ASSOC);
$this->row = @pg_fetch_array($query_id, $this->rownum[$query_id]);
if($this->row)
{
$this->rownum[$query_id]++;