Issue #1900356 by swentel: Fixed Redundant space in theme_field() function.

8.0.x
webchick 2013-01-29 20:53:03 -08:00
parent 83e24aa108
commit 0038f2a936
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}