Browse Source

fix bug in paginator.

Taylor Otwell 13 years ago
parent
commit
5e59a72b5b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      laravel/database/query.php

+ 3 - 1
laravel/database/query.php

@@ -679,7 +679,9 @@ class Query {
 		// retrieved the count from the table.
 		// retrieved the count from the table.
 		list($orderings, $this->orderings) = array($this->orderings, null);
 		list($orderings, $this->orderings) = array($this->orderings, null);
 
 
-		$page = Paginator::page($total = $this->count($columns), $per_page);
+		$total = $this->count(reset($columns));
+
+		$page = Paginator::page($total, $per_page);
 
 
 		$this->orderings = $orderings;
 		$this->orderings = $orderings;