In certain circumstances the pager can display more pages than it normally should. The problem lies here:
|
$end = $begin + $this->maxPages - 2; |
The problem here is that here $end can be more than the maximum number of available pages if the
$this->maxPages parameter is higher than 4
In certain circumstances the pager can display more pages than it normally should. The problem lies here:
FilterManagerBundle/Filter/ViewData/PagerAwareViewData.php
Line 187 in 26c1125
The problem here is that here $end can be more than the maximum number of available pages if the
$this->maxPagesparameter is higher than 4