diff --git a/booking.regn_form.inc b/booking.regn_form.inc
index db57436..479b349 100644
--- a/booking.regn_form.inc
+++ b/booking.regn_form.inc
@@ -966,27 +966,29 @@ function booking_earlyaccess_feedback_callback($form, &$form_state) {
//no matching code found so return an error
if (! $code_check) {
//watchdog('booking', "
booking_earlyaccess_feedback_callback code check did not pass!
");
- return 'You have entered an invalid early registration code. If you do not have a code, please wait until normal registrations open.
';
+ return '' .
+ 'You have entered an invalid early registration code. If you do not have a code, please wait until normal registrations open.
';
}
//matched a code so let the user know everything is fine
else {
//watchdog('booking', "booking_earlyaccess_feedback_callback code check matched
");
- return 'Your early registration code has been validated.
';
+ return 'Your early registration code has been validated.
';
}
}
//no access code entered but we required one
else {
- return 'You must enter an early access code to register now. If you do not have a code, please wait until normal registrations open.
';
+ return '' .
+ 'You must enter an early access code to register now. If you do not have a code, please wait until normal registrations open.
';
}
}
else {
- return 'Unexpected condition.
';
+ return 'Unexpected condition.
';
}
#fallback
return 'If you have been given an early-access code for registration, please enter it below. ' .
'Without this code, your registration will not be accepted.
' .
- '
NOTE: each early-access code can only be used once, so don\'t pass it along to your friends!
';
+ 'NOTE: each early-access code can only be used once, so don\'t pass it along to your friends!
';
}
function booking_form_validate($form, &$form_state) {