Commit 01a4efa4 by Taylor Otwell

Fix bug in paginator appendage.

parent 92a1c709
...@@ -271,7 +271,7 @@ class Paginator { ...@@ -271,7 +271,7 @@ class Paginator {
if (count($this->appends) > 0) if (count($this->appends) > 0)
{ {
$this->appendage = '&'.http_build_query($this->appends); $this->appendage .= '&'.http_build_query($this->appends);
} }
return sprintf($this->appendage, $page); return sprintf($this->appendage, $page);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment