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
Tags 3.3.5
No related merge requests found
...@@ -140,6 +140,7 @@ class PageBrowserController extends ActionController { ...@@ -140,6 +140,7 @@ class PageBrowserController extends ActionController {
* @return string * @return string
*/ */
protected function getPageLink($page) { 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