Browse Source

Refactoring query builder for pagination changes.

Taylor Otwell 13 years ago
parent
commit
b933b19dfd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/db/query.php

+ 2 - 2
system/db/query.php

@@ -464,9 +464,9 @@ class Query {
 	{
 		$total = $this->count();
 
-		$page = \System\Paginator::page(ceil($total / $per_page));
+		$current_page = \System\Paginator::page($total, $per_page);
 
-		return new \System\Paginator($this->for_page($page, $per_page)->get(), $total, $per_page);
+		return new \System\Paginator($this->for_page($current_page, $per_page)->get(), $total, $per_page);
 	}
 
 	/**