remove form_process_tableselect as a test

This commit is contained in:
2016-05-26 12:16:18 +10:00
parent 673ba97ea9
commit 2b64a5f511

View File

@@ -258,7 +258,7 @@ function _booking_manual_email_selecttype_dropdown_callback($form, &$form_state)
'#multiple' => TRUE,
'#header' => $header,
'#options' => $options,
'#default_value' => $new_default_values,
'#default_value' => array("1814" => TRUE),
'#empty' => t('No attendees found.'),
'#attributes' => array('id' => 'sort-table'),
'#prefix' => '<div id="manual-email-attendees-items">',
@@ -266,7 +266,7 @@ function _booking_manual_email_selecttype_dropdown_callback($form, &$form_state)
);
watchdog('booking_debug', "<pre>Manual email new form table\n@info</pre>", array('@info' => print_r( $form['table'], true)));
//$form['table']['#default_value'] = $new_default_values;
$form['table'] = form_process_tableselect($form['table']);
//$form['table'] = form_process_tableselect($form['table']);
return $form['table'];