### Eclipse Workspace Patch 1.0 #P coachcalipari.com Index: drupal/sites/all/modules/date/date/date.module =================================================================== --- drupal/sites/all/modules/date/date/date.module (revision 103) +++ drupal/sites/all/modules/date/date/date.module (working copy) @@ -440,6 +440,12 @@ elseif ($form_id == 'content_display_overview_form') { date_content_display_form($form, $form_state); } + + // set popup calendar for all "authored on" / date published fields. + if (isset($form['author']['date'])) { + $form['author']['date']['#type'] = 'date_popup'; + unset($form['author']['date']['#maxlength']); + } } /**