Skip to content
Snippets Groups Projects

Issue #3338934: Use query->all() instead of query->get() to fix compatibility with Drupal 10

Merged Issue #3338934: Use query->all() instead of query->get() to fix compatibility with Drupal 10
Merged David Galeano requested to merge issue/tagify-3338934:3338934-use-query-all-instead into 1.0.x
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -99,7 +99,7 @@ class TagifyUserListEntityAutocompleteController extends ControllerBase {
// key/value store.
throw new AccessDeniedHttpException();
}
$matches = $this->matcher->getUserMatches($target_type, $selection_handler, $selection_settings, mb_strtolower($input), $request->query->get('selected', []));
$matches = $this->matcher->getUserMatches($target_type, $selection_handler, $selection_settings, mb_strtolower($input), $request->query->all('selected'));
}
return new JsonResponse($matches);
Loading