Browse Source

fix displaying of events

remotes/origin/stable45
Georg Ehrke 14 years ago
parent
commit
652a874fa6
  1. 4
      apps/calendar/lib/app.php

4
apps/calendar/lib/app.php

@ -406,7 +406,9 @@ class OC_Calendar_App{
$return[] = array_merge($staticoutput, $dynamicoutput);
}
}else{
$object->expand($start, $end);
if(OC_Calendar_Object::isrepeating($id) || $event['repeating'] == 1){
$object->expand($start, $end);
}
foreach($object->getComponents() as $singleevent){
if(!($singleevent instanceof Sabre_VObject_Component_VEvent)){
continue;

Loading…
Cancel
Save