Refactoring query builder for pagination changes.

This commit is contained in:
Taylor Otwell
2011-07-21 07:25:54 -07:00
parent b2f92691a6
commit b933b19dfd

View File

@@ -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);
}
/**