Refactoring paginator class.
This commit is contained in:
parent
677747c4ca
commit
f0e3134442
|
@ -67,7 +67,9 @@ public function __construct($results, $total, $per_page)
|
|||
*/
|
||||
public static function page($total, $per_page)
|
||||
{
|
||||
if (is_numeric($page = Input::get('page', 1)) and $page > $last_page = ceil($total / $per_page))
|
||||
$page = Input::get('page', 1);
|
||||
|
||||
if (is_numeric($page) and $page > $last_page = ceil($total / $per_page))
|
||||
{
|
||||
return $last_page;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue