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
!8205
Issue
#3450375
: Prevent repeated form errors on child inline items from parent form element
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Open
Issue
#3450375
: Prevent repeated form errors on child inline items from parent form element
issue/drupal-3450375:3450375-inline-form-errors-prevent-repeating
into
11.x
Overview
4
Commits
2
Pipelines
4
Changes
6
4 open threads
Hide all comments
Open
Issue #3450375: Prevent repeated form errors on child inline items from parent form element
Gaurav Manerkar
requested to merge
issue/drupal-3450375:3450375-inline-form-errors-prevent-repeating
into
11.x
May 28, 2024
Overview
4
Commits
2
Pipelines
4
Changes
6
4 open threads
Hide all comments
Closes
#3450375
0
0
Merge request reports
Compare
11.x
version 3
bad528d6
May 28, 2024
version 2
5ccb766d
May 28, 2024
version 1
622c86f4
May 28, 2024
11.x (base)
and
latest version
latest version
59fe78ba
2 commits,
May 28, 2024
version 3
bad528d6
1 commit,
May 28, 2024
version 2
5ccb766d
1 commit,
May 28, 2024
version 1
622c86f4
1 commit,
May 28, 2024
6 files
+
53
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
core/lib/Drupal/Core/Form/FormErrorHandler.php
+
1
−
1
View file @ 59fe78ba
Edit in single-file editor
Open in Web IDE
Show full file
@@ -163,7 +163,7 @@ protected function setElementErrorsFromFormState(array &$form, FormStateInterfac
}
// Store the errors for this element on the element directly.
$elements
[
'#errors'
]
=
$form_state
->
getError
(
$elements
);
$elements
[
'#errors'
]
=
$form_state
->
getError
(
$elements
,
FALSE
);
}
}
Loading