Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
drupal
Merge requests
!4096
Issue
#3364204
: Locale configuration storage passes wrong arguments to install storage
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3364204
: Locale configuration storage passes wrong arguments to install storage
issue/drupal-3364204:3364204-locale-configuration-storage
into
11.x
Overview
0
Commits
1
Pipelines
0
Changes
2
Open
Andor
requested to merge
issue/drupal-3364204:3364204-locale-configuration-storage
into
11.x
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
11.x
version 4
e8619cde
2 years ago
version 3
4c6786a6
2 years ago
version 2
ed3449d3
2 years ago
version 1
53689f8f
2 years ago
11.x (base)
and
latest version
latest version
f3a96303
1 commit,
1 year ago
version 4
e8619cde
1 commit,
2 years ago
version 3
4c6786a6
1 commit,
2 years ago
version 2
ed3449d3
1 commit,
2 years ago
version 1
53689f8f
1 commit,
2 years ago
2 files
+
49
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
core/modules/locale/src/LocaleDefaultConfigStorage.php
+
2
−
2
Options
@@ -129,8 +129,8 @@ public function listAll() {
@@ -129,8 +129,8 @@ public function listAll() {
public
function
getComponentNames
(
$type
,
array
$list
)
{
public
function
getComponentNames
(
$type
,
array
$list
)
{
$names
=
array_unique
(
$names
=
array_unique
(
array_merge
(
array_merge
(
array_keys
(
$this
->
requiredInstallStorage
->
getComponentNames
(
$type
,
$list
)),
array_keys
(
$this
->
requiredInstallStorage
->
getComponentNames
(
$list
)),
array_keys
(
$this
->
optionalInstallStorage
->
getComponentNames
(
$type
,
$list
))
array_keys
(
$this
->
optionalInstallStorage
->
getComponentNames
(
$list
))
)
)
);
);
if
(
$type
==
'module'
&&
in_array
(
'language'
,
$list
))
{
if
(
$type
==
'module'
&&
in_array
(
'language'
,
$list
))
{
Loading