Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-61027-33' of git://github.com/rezaies/moodle into M…
…OODLE_33_STABLE
  • Loading branch information
David Monllao committed Feb 5, 2018
2 parents 7e93624 + 1c1c751 commit b813a27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion user/profile/field/datetime/field.class.php
Expand Up @@ -81,7 +81,8 @@ public function edit_save_data_preprocess($datetime, $datarecord) {
}

if (is_numeric($datetime)) {
$datetime = userdate($datetime, '%Y-%m-%d-%H-%M-%S');
$gregoriancalendar = \core_calendar\type_factory::get_calendar_instance('gregorian');
$datetime = $gregoriancalendar->timestamp_to_date_string($datetime, '%Y-%m-%d-%H-%M-%S', 99, true, true);
}

$datetime = explode('-', $datetime);
Expand Down

0 comments on commit b813a27

Please sign in to comment.