Skip to content

Commit

Permalink
fixed: don't use translatable date format for registration enddate input
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalsem committed Feb 4, 2016
1 parent 70e85e7 commit 2a5db2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
$end_registration_day_input = elgg_view('input/date', array(
'name' => 'endregistration_day',
'id' => 'endregistration_day',
'value' => (($vars["endregistration_day"] != 0) ? event_manager_format_date($vars["endregistration_day"]) : ''),
'value' => (($vars["endregistration_day"] != 0) ? date('Y-m-d', $vars["endregistration_day"]) : ''),
));

$rsvp_options_label = elgg_echo('event_manager:edit:form:rsvp_options');
Expand Down

0 comments on commit 2a5db2e

Please sign in to comment.