Skip to content
Snippets Groups Projects
Commit b816dcdb authored by Fabian Galinski's avatar Fabian Galinski :pouting_cat:
Browse files

[BUGFIX] The query string will be removed in the page browser

parent 21bfa091
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,7 @@ class PageBrowserController extends ActionController {
* @return string
*/
protected function getPageLink($page) {
return $this->uriBuilder->reset()->setUseCacheHash(TRUE)->uriFor('index', ['currentPage' => $page,]);
return $this->uriBuilder->reset()->setAddQueryString(TRUE)->setUseCacheHash(TRUE)
->uriFor('index', ['currentPage' => $page,]);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment