From 0038f2a936d0b47e8d4cccf280cec264d9389d18 Mon Sep 17 00:00:00 2001
From: webchick <webchick@24967.no-reply.drupal.org>
Date: Tue, 29 Jan 2013 20:53:03 -0800
Subject: [PATCH] Issue #1900356 by swentel: Fixed Redundant space in
 theme_field() function.

---
 core/modules/field/field.module | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/modules/field/field.module b/core/modules/field/field.module
index d1c6b00e06d6..36bd18a9c305 100644
--- a/core/modules/field/field.module
+++ b/core/modules/field/field.module
@@ -1268,7 +1268,7 @@ function theme_field($variables) {
   $output .= '</div>';
 
   // Render the top-level DIV.
-  $output = '<div ' . $variables['attributes'] . '>' . $output . '</div>';
+  $output = '<div' . $variables['attributes'] . '>' . $output . '</div>';
 
   return $output;
 }
-- 
GitLab