mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 01:51:31 +02:00
suspect there may be a similar problem to the msaccess beyond first page bug here too ... may be wrong :D
git-svn-id: file:///svn/phpbb/trunk@2380 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -131,7 +131,7 @@ class sql_db
|
|||||||
$this->result_rowset[$this->result] = array();
|
$this->result_rowset[$this->result] = array();
|
||||||
|
|
||||||
$row_outer = ( isset($row_offset) ) ? $row_offset + 1 : 1;
|
$row_outer = ( isset($row_offset) ) ? $row_offset + 1 : 1;
|
||||||
$row_outer_max = ( isset($num_rows) ) ? $num_rows + 1 : 1E9;
|
$row_outer_max = ( isset($num_rows) ) ? $row_offset + $num_rows + 1 : 1E9;
|
||||||
$row_inner = 0;
|
$row_inner = 0;
|
||||||
|
|
||||||
while( odbc_fetch_row($this->result, $row_outer) && $row_outer < $row_outer_max )
|
while( odbc_fetch_row($this->result, $row_outer) && $row_outer < $row_outer_max )
|
||||||
|
Reference in New Issue
Block a user