Skip to content
Snippets Groups Projects
Commit d8aca0c7 authored by Georg Ehrke's avatar Georg Ehrke
Browse files

apply fix suggested in oc-1132 - bugfix for oc-1132

parent 4e62e121
No related branches found
No related tags found
No related merge requests found
......@@ -439,7 +439,7 @@ class OC_Calendar_App{
$output['end'] = date('Y-m-d', $result->format('U') + --$duration);
}else{
$output['start'] = $result->format('Y-m-d H:i:s');
$output['end'] = date('Y-m-d H:i:s', $result->format('U') + $duration);
$output['end'] = date('Y-m-d H:i:s', $result->format('U') + $result->format('Z') + $duration);
}
$return[] = $output;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment