Browse Source

A few more tweaks to the paginator class.

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

+ 1 - 3
system/paginator.php

@@ -47,12 +47,10 @@ class Paginator {
 	 */
 	public function __construct($results, $total, $per_page)
 	{
+		$this->page = static::page($total, $per_page);
 		$this->per_page = $per_page;
 		$this->results = $results;
 		$this->total = $total;
-
-		// Determine the current page based on the total results and per page limit.
-		$this->page = static::page($this->total, $this->per_page);
 	}
 
 	/**