summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprashantsinalkar2018-10-30 09:29:13 +0530
committerprashantsinalkar2018-10-30 09:29:13 +0530
commitb9658aad58a1aa2a8f75d3e53aa2cc12f1067c3c (patch)
tree36ef11d2901e97c751e8a47230c0eba172244bc8
parent563696974fc7c357ae602495a76e13c0481761c7 (diff)
downloadosdag_workshop_booking-b9658aad58a1aa2a8f75d3e53aa2cc12f1067c3c.tar.gz
osdag_workshop_booking-b9658aad58a1aa2a8f75d3e53aa2cc12f1067c3c.tar.bz2
osdag_workshop_booking-b9658aad58a1aa2a8f75d3e53aa2cc12f1067c3c.zip
updated the minDate
-rw-r--r--workshop_registration.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/workshop_registration.inc b/workshop_registration.inc
index 004d531..81fa0c8 100644
--- a/workshop_registration.inc
+++ b/workshop_registration.inc
@@ -323,6 +323,7 @@ function osdag_workshop_booking_form($form, &$form_state)
$form['workshop_info']['checklist_group']['suggested_date'] = array(
'#type' => 'fieldset',
'#title' => t('Suggested Date(s)'),
+ '#description' => '<b>Note:</b> Select a range of more than 2 days when the host institute/company can organize this workshop. Final dates will be decided based on mutual convenience.',
'#tree' => TRUE,
);
$cur_year = date("Y");
@@ -337,7 +338,7 @@ function osdag_workshop_booking_form($form, &$form_state)
'#date_increment' => 0,
'#date_year_range' => $cur_year.':+0',
'#datepicker_options' => array(
- 'minDate' => 10,
+ 'minDate' => 15,
'dateFormat' => date_popup_format_to_popup('d-m-Y'),
),
);