Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
tagify
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
tagify
Merge requests
!24
Issue
#3338934
: Use query->all() instead of query->get() to fix compatibility with Drupal 10
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3338934
: Use query->all() instead of query->get() to fix compatibility with Drupal 10
issue/tagify-3338934:3338934-use-query-all-instead
into
1.0.x
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
David Galeano
requested to merge
issue/tagify-3338934:3338934-use-query-all-instead
into
1.0.x
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
1.0.x
version 1
fcf4438d
2 years ago
1.0.x (base)
and
latest version
latest version
75089b8b
2 commits,
2 years ago
version 1
fcf4438d
1 commit,
2 years ago
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
modules/tagify_user_list/src/Controller/TagifyUserListEntityAutocompleteController.php
+
1
−
1
Options
@@ -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