Issue #1900356 by swentel: Fixed Redundant space in theme_field() function.
parent
83e24aa108
commit
0038f2a936
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue