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
!2901
Couldn't fetch the linked file.
Issue
#3130107
: Extend unit test coverage for LanguageNegotiationContentEntity
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3130107
: Extend unit test coverage for LanguageNegotiationContentEntity
issue/drupal-3130107:3130107-add-unit-test
into
10.1.x
Overview
0
Commits
354
Pipelines
0
Changes
1
Open
Stefanos Petrakis
requested to merge
issue/drupal-3130107:3130107-add-unit-test
into
10.1.x
2 years ago
Overview
0
Commits
354
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
fff02a20
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
fff02a20
Issue
#3320483
by andypost: Remove unused variable $pos in system.install
· fff02a20
catch
authored
2 years ago
core/modules/system/system.install
+
1
−
1
Options
@@ -1266,7 +1266,7 @@ function system_requirements($phase) {
$provider
=
$connection
->
getProvider
();
if
(
$provider
!==
'core'
&&
!
\Drupal
::
moduleHandler
()
->
moduleExists
(
$provider
))
{
$autoload
=
$connection
->
getConnectionOptions
()[
'autoload'
]
??
''
;
if
(
(
$pos
=
strpos
(
$autoload
,
'src/Driver/Database/'
)
)
!==
FALSE
)
{
if
(
strpos
(
$autoload
,
'src/Driver/Database/'
)
!==
FALSE
)
{
$post_update_registry
=
\Drupal
::
service
(
'update.post_update_registry'
);
$pending_updates
=
$post_update_registry
->
getPendingUpdateInformation
();
if
(
!
in_array
(
'enable_provider_database_driver'
,
array_keys
(
$pending_updates
[
'system'
][
'pending'
]
??
[]),
TRUE
))
{
Loading