diff --git a/booking.email_manually.inc b/booking.email_manually.inc index 3002f69..b7345c3 100644 --- a/booking.email_manually.inc +++ b/booking.email_manually.inc @@ -34,6 +34,8 @@ function booking_manual_email_form($form, &$form_state) $prefix = t("

Send a manual email to people registered for this event. "); $prefix .= t("Click !workflow to update builtin-workflow emails, or click !custom to update custom email definitions.

", array ('!workflow' => l('here', 'admin/config/booking/emails'), '!custom' => l('here', 'admin/config/booking/emails/definitions'))); + $prefix .= t("

Highlighted rows have welfare requirements.

"); + $email_options_array = array(); $email_options_array['NULL'] = "---"; $email_options_array['registration'] = 'Registration Successful Email'; diff --git a/booking.helper.inc b/booking.helper.inc index 426b3c8..7d1d225 100644 --- a/booking.helper.inc +++ b/booking.helper.inc @@ -1696,7 +1696,7 @@ function _booking_leader_helper_email_summary($node) { //check that this study group session has been defined for this attendee and that they have a role to perform if (!empty($node->$sessionid) && $node->$roleid > 0) { - //if they're a leader or reserver leader, then the matching person is the helper + //if they're a leader or reserve leader, then the matching person is the helper if ($node->$roleid == 1 || $node->$roleid == 3) { $role = "Leader"; $otherrole = "Helper";