Merge pull request #4341 from Icinga/fix/quick-search-double-encodes-query-values-4321

Don't double encode query param values when using the quick search
This commit is contained in:
Johannes Meyer 2021-03-30 10:37:41 +02:00 committed by GitHub
commit d0642587e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -288,7 +288,10 @@ class FilterEditor extends AbstractWidget
$url = Url::fromRequest()->onlyWith($this->preserveParams);
$urlParams = $url->getParams();
$url->setQueryString($filter->toQueryString());
$url->getParams()->mergeValues($urlParams->toArray(false));
foreach ($urlParams->toArray(false) as $key => $value) {
$url->getParams()->addEncoded($key, $value);
}
$this->redirectNow($url);
}