|
From: Paul S. O. <ps...@us...> - 2002-03-20 17:48:34
|
Update of /cvsroot/phpbb/phpBB2/db In directory usw-pr-cvs1:/tmp/cvs-serv2013/db Modified Files: mssql-odbc.php Log Message: suspect there may be a similar problem to the msaccess beyond first page bug here too ... may be wrong :D Index: mssql-odbc.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/db/mssql-odbc.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** mssql-odbc.php 5 Mar 2002 02:19:38 -0000 1.6 --- mssql-odbc.php 20 Mar 2002 17:48:30 -0000 1.7 *************** *** 132,136 **** $row_outer = ( isset($row_offset) ) ? $row_offset + 1 : 1; ! $row_outer_max = ( isset($num_rows) ) ? $num_rows + 1 : 1E9; $row_inner = 0; --- 132,136 ---- $row_outer = ( isset($row_offset) ) ? $row_offset + 1 : 1; ! $row_outer_max = ( isset($num_rows) ) ? $row_offset + $num_rows + 1 : 1E9; $row_inner = 0; |