From cf8736d43b3436475932d3addac73f691a6e86cc Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Tue, 22 Aug 2017 21:35:42 +1000 Subject: [PATCH] change song choice to mandatory --- booking.regn_form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booking.regn_form.inc b/booking.regn_form.inc index bf12549..b2b47cc 100644 --- a/booking.regn_form.inc +++ b/booking.regn_form.inc @@ -916,7 +916,7 @@ function booking_form($node, &$form_state, $inserting = FALSE, $early_access_all '#type' => 'textfield', '#title' => t("Let us know if there's a song you'd love to sing during the week."), '#maxlength' => 200, - '#required' => FALSE, + '#required' => TRUE, '#default_value' => !empty($data->booking_song_choice) ? $data->booking_song_choice : '' ); }