Edited system/paginator.php via GitHub

This commit is contained in:
Taylor Otwell 2011-07-25 13:35:41 -07:00
parent a6a2588ed1
commit 7499586bb3
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ class Paginator {
public function __construct($results, $total, $per_page) public function __construct($results, $total, $per_page)
{ {
$this->page = static::page($total, $per_page); $this->page = static::page($total, $per_page);
$this->per_page = $per_page; $this->per_page = $per_page;
$this->results = $results; $this->results = $results;
$this->total = $total; $this->total = $total;