Index: compact_forms.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/compact_forms/compact_forms.admin.inc,v
retrieving revision 1.2
diff -u -p -r1.2 compact_forms.admin.inc
--- compact_forms.admin.inc	3 May 2009 19:09:26 -0000	1.2
+++ compact_forms.admin.inc	3 May 2009 19:15:56 -0000
@@ -19,8 +19,8 @@ function compact_forms_admin_form() {
     '#description' => t('Enter the CSS #id of the forms that you want to activate compact_forms for. One per line.'),
   );
   $form['compact_forms_stars'] = array(
-    '#title' => t('"Required field" - stars'),
     '#type' => 'radios',
+    '#title' => t('"Required field" - stars'),
     '#options' => array(
       0 => t('Remove "required" stars'),
       1 => t('Leave "required" stars attached to label'),
@@ -30,28 +30,20 @@ function compact_forms_admin_form() {
     '#description' => t('How to deal with the stars added by Drupal to indicate required fields.'),
   );
   $form['compact_forms_colons'] = array(
-    '#title' => t('Trailing colons in labels'),
-    '#type' => 'radios',
-    '#options' => array(
-      0 => t('Remove trailing colons from the label'),
-      1 => t('Keep trailing colons'),
-    ),
+    '#type' => 'checkbox',
+    '#title' => t('Keep trailing colons in labels'),
     '#default_value' => variable_get('compact_forms_colons', 0),
   );
   $form['compact_forms_field_size'] = array(
-    '#title' => t('Textfield size'),
     '#type' => 'textfield',
+    '#title' => t('Textfield size'),
     '#size' => 3,
     '#default_value' => variable_get('compact_forms_field_size', ''),
     '#description' => t('Optionally override the width of all text fields in the selected forms'),
   );
   $form['compact_forms_descriptions'] = array(
-    '#title' => t('Textfield descriptions'),
-    '#type' => 'radios',
-    '#options' => array(
-      0 => t('Hide descriptions'),
-      1 => t('Show descriptions'),
-    ),
+    '#type' => 'checkbox',
+    '#title' => t('Show form element descriptions'),
     '#default_value' => variable_get('compact_forms_descriptions', 1),
     '#description' => t('Optionally hide descriptions of all textfields (in general not recommended).'),
   );
