diff options
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc index f326bdeca..f35db4637 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1115,7 +1115,7 @@ function form_radios($title, $name, $value, $options, $description = NULL, $requ if (count($options) > 0) { $choices = ''; foreach ($options as $key => $choice) { - $choices .= '<label class="option"><input type="radio" class="form-radio" name="edit['. $name .']" value="'. $key .'"'. ($key == $value ? ' checked="checked"' : ''). drupal_attributes($attributes). ' /> '. $choice .'</label><br />'; + $choices .= '<label class="option"><input type="radio" class="form-radio" name="edit['. $name .']" value="'. $key .'"'. ($key == $value ? ' checked="checked"' : ''). drupal_attributes($attributes) .' /> '. $choice .'</label><br />'; } return theme('form_element', $title, $choices, $description, NULL, $required, _form_get_error($name)); } @@ -1179,7 +1179,7 @@ function form_checkboxes($title, $name, $values, $options, $description = NULL, } $choices = ''; foreach ($options as $key => $choice) { - $choices .= '<label class="option"><input type="checkbox" class="form-checkbox" name="edit['. $name .'][]" value="'. $key .'"'. (in_array($key, $values) ? ' checked="checked"' : ''). drupal_attributes($attributes). ' /> '. $choice .'</label><br />'; + $choices .= '<label class="option"><input type="checkbox" class="form-checkbox" name="edit['. $name .'][]" value="'. $key .'"'. (in_array($key, $values) ? ' checked="checked"' : ''). drupal_attributes($attributes) .' /> '. $choice .'</label><br />'; } // Note: because unchecked boxes are not included in the POST data, we // include a form_hidden() which will be overwritten as soon as there is at |