From 2b64a5f511775ac8b00d9f14fd2be18c9ed91471 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 26 May 2016 12:16:18 +1000 Subject: [PATCH] remove form_process_tableselect as a test --- booking.emails.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booking.emails.inc b/booking.emails.inc index 6e7a6f1..66a5049 100644 --- a/booking.emails.inc +++ b/booking.emails.inc @@ -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' => '
', @@ -266,7 +266,7 @@ function _booking_manual_email_selecttype_dropdown_callback($form, &$form_state) ); watchdog('booking_debug', "
Manual email new form table\n@info
", 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'];