another test

This commit is contained in:
2017-07-02 22:45:49 +10:00
parent 3d1a323a3b
commit 84a44b9845

View File

@@ -85,7 +85,7 @@ function booking_emails_workflow_admin() {
'#default_value' => isset(variable_get('booking_html_mail_footer')['value']) ? variable_get('booking_html_mail_footer')['value'] : variable_get('booking_html_mail_footer', '<p>&nbsp;</p>'),
'#type' => 'text_format',
'#format' => 'full_html',
'format' => array('access' => FALSE), // Hiding select options
'format' => array('#access' => FALSE), // Hiding select options
);
}
$form['emails']['booking_email_notification_text'] = array(
@@ -93,7 +93,8 @@ function booking_emails_workflow_admin() {
'#description' => t('Email to send to the notification email address (defined in general configuration) when a person has registered'),
'#default_value' => isset(variable_get('booking_email_notification_text')['value']) ? variable_get('booking_email_notification_text')['value'] : variable_get('booking_email_notification_text', '[booking:regn-summary]'),
'#type' => $form_type,
'#format' => $form_format,
'#format' => $form_format,
'format' => array('#access' => FALSE), // Hiding select options
);
$form['emails']['booking_email_bookedin_text'] = array(
'#title' => t('Registration Successful Email'),