Browse Source

Refactoring paginator class.

Taylor Otwell 13 years ago
parent
commit
f0e3134442
1 changed files with 3 additions and 1 deletions
  1. 3 1
      system/paginator.php

+ 3 - 1
system/paginator.php

@@ -67,7 +67,9 @@ class Paginator {
 	 */
 	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;
 		}