From 4d0c6c818661bcd5389c0d90f0f37f364f02c654 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 26 May 2016 10:14:09 +1000 Subject: [PATCH] missing bracket --- booking.emails.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booking.emails.inc b/booking.emails.inc index 633b0ed..b0b24bc 100644 --- a/booking.emails.inc +++ b/booking.emails.inc @@ -192,7 +192,7 @@ function _booking_manual_email_selecttype_dropdown_callback($form, &$form_state) //unset($form['table']['#value']); watchdog('booking_debug', "
Manual email table form array\n@info
", array('@info' => print_r( $form, true))); - watchdog('booking_debug', "
Manual email rendered table\n@info
", array('@info' => print_r( drupal_render($form['table'], true))); + watchdog('booking_debug', "
Manual email rendered table\n@info
", array('@info' => print_r( drupal_render($form['table']), true))); // update the tableselect $commands = array(); $commands[] = ajax_command_replace('#manual-email-attendees-items', drupal_render($form['table']));