Browse Source

Refactoring Eloquent for pagination changes.

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

+ 2 - 2
system/db/eloquent.php

@@ -200,9 +200,9 @@ abstract class Eloquent {
 			$per_page = static::$per_page;
 		}
 
-		$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);
 	}
 
 	/**