diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 07:34:07 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 07:34:07 +0000 |
commit | 0a984f2c2bb232f245947d895ce5cc38787034a3 (patch) | |
tree | 7c8284741c429792ade923cafb37244d0ea786eb /includes | |
parent | c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3 (diff) | |
download | brdo-0a984f2c2bb232f245947d895ce5cc38787034a3.tar.gz brdo-0a984f2c2bb232f245947d895ce5cc38787034a3.tar.bz2 |
- #18597: Resolve conflict in column name between queue.module and poll.module.
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 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 |