Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.474 diff -u -p -r1.474 common.inc --- includes/common.inc 25 Aug 2005 21:14:15 -0000 1.474 +++ includes/common.inc 26 Aug 2005 21:18:11 -0000 @@ -1187,11 +1187,11 @@ function form_radio($title, $name, $valu * @return * A themed HTML string representing the radio button set. */ -function form_radios($title, $name, $value, $options, $description = NULL, $required = FALSE, $attributes = NULL) { +function form_radios($title, $name, $value, $options, $description = NULL, $required = FALSE, $attributes = NULL, $separator = '
') { if (count($options) > 0) { $choices = ''; foreach ($options as $key => $choice) { - $choices .= '
'; + $choices .= ''. $separator; } return theme('form_element', $title, $choices, $description, NULL, $required, _form_get_error($name)); }