diff --git a/booking.emails_admin.inc b/booking.emails_admin.inc index 573a10d..d70bdd6 100644 --- a/booking.emails_admin.inc +++ b/booking.emails_admin.inc @@ -64,13 +64,14 @@ function booking_emails_admin() { $form['emails']['booking_email_notification_text'] = array( '#title' => t('Notification Email'), '#type' => 'textarea', - '#format' => 'full_html', + //'#format' => 'full_html', '#description' => t('Email to send to the notification email address (defined in general configuration) when a person has registered'), '#default_value' => variable_get('booking_email_notification_text', '[booking:regn-summary]'), ); $form['emails']['booking_email_bookedin_text'] = array( '#title' => t('Registration Successful Email'), - '#type' => 'textarea', + //'#type' => 'textarea', + '#type' => 'text_format', '#format' => 'full_html', '#description' => t('Text to use in an email indicating the person has booked in, paid their deposit and is not on the waiting list'), '#default_value' => variable_get('booking_email_bookedin_text', $default_email_text),