Skip to content
Snippets Groups Projects
Commit cb6d17bf authored by Ide Braakman's avatar Ide Braakman Committed by Markus Kalkbrenner
Browse files

Issue #3327596: $request->get may no longer return array as of Symfony 6.0 (BadRequestException)

parent 241a0bc7
No related branches found
No related tags found
No related merge requests found
...@@ -315,7 +315,7 @@ class QueryString extends UrlProcessorPluginBase { ...@@ -315,7 +315,7 @@ class QueryString extends UrlProcessorPluginBase {
$url_parameters = $this->request->query; $url_parameters = $this->request->query;
// Get the active facet parameters. // Get the active facet parameters.
$active_params = $url_parameters->get($this->filterKey); $active_params = $url_parameters->all()[$this->filterKey] ?? "";
$facet_source_id = $this->configuration['facet']->getFacetSourceId(); $facet_source_id = $this->configuration['facet']->getFacetSourceId();
// When an invalid parameter is passed in the url, we can't do anything. // When an invalid parameter is passed in the url, we can't do anything.
......
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