fix all day with one day to much - bugfix for oc-126
This commit is contained in:
parent
149bbeb260
commit
64a617b2a1
1 changed files with 2 additions and 2 deletions
|
@ -39,13 +39,13 @@ foreach($events as $event){
|
|||
$dtend = OC_Calendar_Object::getDTEndFromVEvent($vevent);
|
||||
$return_event = array();
|
||||
$start_dt = $dtstart->getDateTime();
|
||||
$start_dt->setTimezone(new DateTimeZone($user_timezone));
|
||||
$end_dt = $dtend->getDateTime();
|
||||
$end_dt->setTimezone(new DateTimeZone($user_timezone));
|
||||
if ($dtstart->getDateType() == Sabre_VObject_Element_DateTime::DATE){
|
||||
$return_event['allDay'] = true;
|
||||
}else{
|
||||
$return_event['allDay'] = false;
|
||||
$start_dt->setTimezone(new DateTimeZone($user_timezone));
|
||||
$end_dt->setTimezone(new DateTimeZone($user_timezone));
|
||||
}
|
||||
//Repeating Events
|
||||
if($event['repeating'] == 1){
|
||||
|
|
Loading…
Reference in a new issue