From 0f1a044e09427ac1d135eb91598543a73d0ef78c Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Wed, 20 May 2015 12:06:56 +0100
Subject: [PATCH] Issue #2208585 by googletorp, quicksketch: Make
 #wrapper_attributes official and document it

---
 core/includes/form.inc | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/core/includes/form.inc b/core/includes/form.inc
index eb028e35c923..9190e314d5b3 100644
--- a/core/includes/form.inc
+++ b/core/includes/form.inc
@@ -403,15 +403,9 @@ function template_preprocess_form_element(&$variables) {
   // \Drupal::formBuilder()->doBuildForm().
   $element += array(
     '#title_display' => 'before',
+    '#wrapper_attributes' => array(),
   );
-
-  // Take over any #wrapper_attributes defined by the element.
-  // @todo Temporary hack for #type 'item'.
-  // @see http://drupal.org/node/1829202
-  $variables['attributes'] = array();
-  if (isset($element['#wrapper_attributes'])) {
-    $variables['attributes'] = $element['#wrapper_attributes'];
-  }
+  $variables['attributes'] = $element['#wrapper_attributes'];
 
   // Add element #id for #type 'item'.
   if (isset($element['#markup']) && !empty($element['#id'])) {
-- 
GitLab