Browse Source

Fixed empty result set bug in paginator class.

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

+ 1 - 1
system/paginator.php

@@ -93,7 +93,7 @@ class Paginator {
 
 		if (is_numeric($page) and $page > $last_page = ceil($total / $per_page))
 		{
-			return $last_page;
+			return ($last_page > 0) ? $last_page : 1;
 		}
 
 		return ($page < 1 or filter_var($page, FILTER_VALIDATE_INT) === false) ? 1 : $page;