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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!5177
Patch from
#3277238
-29
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Open
Patch from
#3277238
-29
issue/drupal-3277238:3277238-fix-drupaltaxonomyentitytermgetname-to
into
11.x
Overview
5
Commits
2
Pipelines
3
Changes
2
All threads resolved!
Show all comments
Open
Patch from #3277238-29
Lauri Timmanee
requested to merge
issue/drupal-3277238:3277238-fix-drupaltaxonomyentitytermgetname-to
into
11.x
Oct 29, 2023
Overview
5
Commits
2
Pipelines
3
Changes
2
All threads resolved!
Show all comments
Closes
#3277238
0
0
Merge request reports
Compare
11.x
version 2
f6586751
Nov 14, 2023
version 1
340c02ef
Oct 29, 2023
11.x (base)
and
latest version
latest version
a36f9a5d
2 commits,
Nov 14, 2023
version 2
f6586751
1 commit,
Nov 14, 2023
version 1
340c02ef
1 commit,
Oct 29, 2023
2 files
+
95
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
core/modules/taxonomy/src/Entity/Term.php
+
1
−
1
View file @ a36f9a5d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -253,7 +253,7 @@ public function setFormat($format) {
* {@inheritdoc}
*/
public
function
getName
()
{
return
$this
->
label
();
return
$this
->
label
()
??
''
;
}
/**
Loading