diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-03 00:17:52 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-03 00:17:52 +0000 |
commit | 4bd256a20fb949cd0d802d2c5ccee9374e2c87a8 (patch) | |
tree | fd14bd22ae0f15addee26dc70be4e105be45af10 /includes | |
parent | f24e304fa3f455fdfbce0f94c43a20f8fb4a3a21 (diff) | |
download | brdo-4bd256a20fb949cd0d802d2c5ccee9374e2c87a8.tar.gz brdo-4bd256a20fb949cd0d802d2c5ccee9374e2c87a8.tar.bz2 |
#85166: div around radios (checkboxes) and tweak margins
Diffstat (limited to 'includes')
-rw-r--r-- | includes/form.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/form.inc b/includes/form.inc index 3f0a117b1..686a88b69 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -943,6 +943,7 @@ function theme_radio($element) { * A themed HTML string representing the radio button set. */ function theme_radios($element) { + $element['#children'] = '<div class="form-radios">'. $element['#children'] .'</div>'; if ($element['#title'] || $element['#description']) { unset($element['#id']); return theme('form_element', $element, $element['#children']); |