Skip to content
Snippets Groups Projects
Commit 94b94e7e authored by catch's avatar catch
Browse files

Issue #3248013 by daffie, longwave: [Symfony6] The...

Issue #3248013 by daffie, longwave: [Symfony6] The Drupal\Tests\views\Unit\Plugin\argument_default\QueryParameterTest fails for Symfony 5.4
parent f4d355a2
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ public function getArgument() {
$current_request = $this->view->getRequest();
if ($current_request->query->has($this->options['query_param'])) {
$param = $current_request->query->get($this->options['query_param']);
$param = $current_request->query->all()[$this->options['query_param']];
if (is_array($param)) {
$conjunction = ($this->options['multiple'] == 'and') ? ',' : '+';
$param = implode($conjunction, $param);
......
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