diff options
Diffstat (limited to 'includes')
-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 da0e588fc..d35a10d87 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1211,7 +1211,7 @@ function form_radios($title, $name, $value, $options, $description = NULL, $requ 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 />'; } - return theme('form_element', $title, $choices, $description, $name, $required, _form_get_error($name)); + return theme('form_element', $title, $choices, $description, NULL, $required, _form_get_error($name)); } } @@ -1273,7 +1273,7 @@ function form_checkboxes($title, $name, $values, $options, $description = NULL, 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 />'; } - return theme('form_element', $title, $choices, $description, $name, $required, _form_get_error($name)); + return theme('form_element', $title, $choices, $description, NULL, $required, _form_get_error($name)); } } |