Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.370 diff -u -F^f -r1.370 common.inc --- includes/common.inc 22 Jul 2004 16:06:54 -0000 1.370 +++ includes/common.inc 23 Jul 2004 22:21:04 -0000 @@ -1148,11 +1148,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, $name, $required, _form_get_error($name)); }