Skip to content
Snippets Groups Projects
Commit 902b7417 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

Issue #2080617 by slv_: Remove Unused local variable from /core/modules/field/field.form.inc.

parent 8f6cb348
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -54,7 +54,7 @@ function theme_field_multiple_value_form($variables) {
usort($items, '_field_sort_items_value_helper');
// Add the items as table rows.
foreach ($items as $key => $item) {
foreach ($items as $item) {
$item['_weight']['#attributes']['class'] = array($order_class);
$delta_element = drupal_render($item['_weight']);
$cells = array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment