Skip to content
Snippets Groups Projects
Commit 51fa0824 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1507556 by C. Lee, IshaDakota: Fixed Remove colon from label for multi-valued field form.

parent b91c8d5d
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,7 @@ function theme_field_multiple_value_form($variables) {
$header = array(
array(
'data' => '<label>' . t('!title: !required', array('!title' => $element['#title'], '!required' => $required)) . "</label>",
'data' => '<label>' . t('!title !required', array('!title' => $element['#title'], '!required' => $required)) . "</label>",
'colspan' => 2,
'class' => array('field-label'),
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment