diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index f12c04665..e025299e6 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -595,10 +595,10 @@ function theme_form_element($title, $value, $description = NULL, $id = NULL, $re if ($title) { if ($id) { - $output .= ' <label for="'. form_clean_id($id) .'">'. $title .':</label>'. $required ."<br />\n"; + $output .= ' <label for="'. form_clean_id($id) .'">'. $title .":$required</label>\n"; } else { - $output .= ' <label>'. $title .':</label>'. $required ."<br />\n"; + $output .= ' <label>'. $title .":$required</label>\n"; } } |