From 43d4954d9b5424e719e49b0c0c7dea11576a1291 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Wed, 4 Mar 2015 16:24:50 +1100 Subject: [PATCH] as above --- booking.admin.inc | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/booking.admin.inc b/booking.admin.inc index 84f1076..186bc5a 100644 --- a/booking.admin.inc +++ b/booking.admin.inc @@ -144,8 +144,9 @@ function booking_admin() { $form['features']['booking_readinggroup_id'] = array ( '#type' => 'textfield', '#title' => t('Studygroup ID for the reading group'), - '#description' => t("Set the ID for the studygroup that corresponds with the reading group. Set to zero if reading groups aren't in use. " - . " This option is only applicable if study groups are enabled. If in doubt, leave as zero."), + '#description' => t("Set the ID for the studygroup that corresponds with the reading group. " + . " This option is only applicable if study groups are enabled. Set to zero if reading groups aren't in use. " + . " If in doubt, leave as zero."), '#size' => 3, '#maxlength' => 3, '#default_value' => variable_get('booking_readinggroup_id','0'), @@ -238,13 +239,6 @@ function booking_admin() { '#options' => array (0 => t('No'), t('Yes')), '#default_value' => variable_get('booking_enable_medicare', 1), ); - $form['regn_options']['booking_enable_tshirts'] = array ( - '#type' => 'radios', - '#title' => t('Enable sizing information?'), - '#description' => t('Select whether to include clothe sizing in the booking form.'), - '#options' => array (0 => t('No'), t('Yes')), - '#default_value' => variable_get('booking_enable_tshirts', 0), - ); $form['regn_options']['booking_tshirts_text_definition'] = array ( '#type' => 'textfield', '#title' => t('Clothes Sizing Text Definition'), @@ -253,6 +247,14 @@ function booking_admin() { '#size' => 150, '#maxlength' => 2000, ); + $form['regn_options']['booking_enable_tshirts'] = array ( + '#type' => 'radios', + '#title' => t('Enable sizing information?'), + '#description' => t('Select whether to include clothe sizing in the booking form.'), + '#options' => array (0 => t('No'), t('Yes')), + '#default_value' => variable_get('booking_enable_tshirts', 0), + ); + $form['regn_options']['booking_enable_passport'] = array ( '#type' => 'radios', '#title' => t('Enable passport information?'),