Browse Source

Fix bug in query string construction.

Taylor Otwell 13 years ago
parent
commit
92a1c70918
1 changed files with 4 additions and 2 deletions
  1. 4 2
      laravel/paginator.php

+ 4 - 2
laravel/paginator.php

@@ -267,9 +267,11 @@ class Paginator {
 	 */
 	protected function appendage($element, $page)
 	{
-		if (is_null($this->appendage))
+		$this->appendage = '?page=%s';
+
+		if (count($this->appends) > 0)
 		{
-			$this->appendage = '?page=%s'.http_build_query((array) $this->appends);
+			$this->appendage = '&'.http_build_query($this->appends);
 		}
 
 		return sprintf($this->appendage, $page);