Fix bug in paginator appendage.
This commit is contained in:
parent
92a1c70918
commit
01a4efa4b0
|
@ -271,7 +271,7 @@ protected function appendage($element, $page)
|
||||||
|
|
||||||
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);
|
||||||
|
|
Loading…
Reference in New Issue