From: <ok...@us...> - 2003-01-04 13:21:16
|
Update of /cvsroot/xoops/xoops2/modules/xoopsmembers In directory sc8-pr-cvs1:/tmp/cvs-serv14478/modules/xoopsmembers Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops2/modules/xoopsmembers/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 2 Jan 2003 18:05:56 -0000 1.1 --- index.php 4 Jan 2003 13:21:12 -0000 1.2 *************** *** 315,319 **** } $limit = (!empty($HTTP_POST_VARS['limit'])) ? intval($HTTP_POST_VARS['limit']) : 20; ! if ( $limit > 50 ) { $limit = 50; } --- 315,319 ---- } $limit = (!empty($HTTP_POST_VARS['limit'])) ? intval($HTTP_POST_VARS['limit']) : 20; ! if ( $limit == 0 || $limit > 50 ) { $limit = 50; } |