Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-61027-master' of git://github.com/rezaies/moodle
  • Loading branch information
David Monllao committed Feb 5, 2018
2 parents 69b4a73 + 4258177 commit 02e6350
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 02e6350

Please sign in to comment.