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:
commit
ac5fdb8956
|
@ -66,13 +66,11 @@ if ( !empty($limit) && $nEvents > $limit )
|
||||||
$nEvents = $limit;
|
$nEvents = $limit;
|
||||||
}
|
}
|
||||||
$pages = (int)ceil($nEvents/ZM_WEB_EVENTS_PER_PAGE);
|
$pages = (int)ceil($nEvents/ZM_WEB_EVENTS_PER_PAGE);
|
||||||
if ( $pages > 1 ) {
|
if ( !empty($page) ) {
|
||||||
if ( !empty($page) ) {
|
if ( $page < 0 )
|
||||||
if ( $page < 0 )
|
$page = 1;
|
||||||
$page = 1;
|
if ( $page > $pages )
|
||||||
if ( $page > $pages )
|
$page = $pages;
|
||||||
$page = $pages;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if ( !empty($page) ) {
|
if ( !empty($page) ) {
|
||||||
$limitStart = (($page-1)*ZM_WEB_EVENTS_PER_PAGE);
|
$limitStart = (($page-1)*ZM_WEB_EVENTS_PER_PAGE);
|
||||||
|
|
Loading…
Reference in New Issue