Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
symfony_mailer
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
symfony_mailer
Merge requests
!64
Issue
#3391090
: Transport list should reflect non-overridden config
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3391090
: Transport list should reflect non-overridden config
issue/symfony_mailer-3391090:3391090-transport-list-should
into
1.x
Overview
0
Commits
2
Pipelines
2
Changes
1
Merged
Issue #3391090: Transport list should reflect non-overridden config
Pierre Rudloff
requested to merge
issue/symfony_mailer-3391090:3391090-transport-list-should
into
1.x
Oct 2, 2023
Overview
0
Commits
2
Pipelines
2
Changes
1
0
0
Merge request reports
Compare
1.x
version 2
7792266a
Oct 20, 2023
version 1
54d14d36
Oct 2, 2023
1.x (base)
and
latest version
latest version
071d7ef8
2 commits,
Oct 21, 2023
version 2
7792266a
2 commits,
Oct 20, 2023
version 1
54d14d36
1 commit,
Oct 2, 2023
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Entity/MailerTransport.php
+
2
−
1
View file @ 071d7ef8
Edit in single-file editor
Open in Web IDE
Show full file
@@ -140,7 +140,8 @@ class MailerTransport extends ConfigEntityBase implements MailerTransportInterfa
* {@inheritdoc}
*/
public
function
isDefault
()
{
return
\Drupal
::
config
(
'symfony_mailer.settings'
)
->
get
(
'default_transport'
)
==
$this
->
id
();
// Get the default transport without overrides.
return
\Drupal
::
config
(
'symfony_mailer.settings'
)
->
getOriginal
(
'default_transport'
,
FALSE
)
==
$this
->
id
();
}
/**
Loading