Merge pull request #1421 from connortechnology/fix_events_pagination

remove the if(pages>1) so that the if  >  line always happens
This commit is contained in:
Steve Gilvarry 2016-04-28 21:43:54 +10:00
commit ac5fdb8956
1 changed files with 5 additions and 7 deletions

View File

@ -66,13 +66,11 @@ if ( !empty($limit) && $nEvents > $limit )
$nEvents = $limit;
}
$pages = (int)ceil($nEvents/ZM_WEB_EVENTS_PER_PAGE);
if ( $pages > 1 ) {
if ( !empty($page) ) {
if ( $page < 0 )
$page = 1;
if ( $page > $pages )
$page = $pages;
}
if ( !empty($page) ) {
if ( $page < 0 )
$page = 1;
if ( $page > $pages )
$page = $pages;
}
if ( !empty($page) ) {
$limitStart = (($page-1)*ZM_WEB_EVENTS_PER_PAGE);