Modifications so unpaid people can move to bottom of waiting list

This commit is contained in:
2014-05-28 12:28:23 +10:00
parent f7af25051c
commit 41f39b6705
5 changed files with 53 additions and 13 deletions

View File

@@ -151,7 +151,7 @@ function booking_form($node, &$form_state, $inserting = FALSE) {
$form['your-details']['booking_status'] = array(
'#type' => 'radios',
'#title' => t('Registration Status'),
'#options' => $status_options,
'#options' => _booking_status_generate(),
'#default_value' => !empty($data->booking_status) ? $data->booking_status : '',
);