fix creation of monthly repeated events

This commit is contained in:
Georg Ehrke 2012-06-09 15:13:09 +02:00
parent 001293a702
commit cfb9c764ca
1 changed files with 3 additions and 0 deletions

View File

@ -665,6 +665,9 @@ class OC_Calendar_Object{
$byday .= ',' . $weekofmonth . $days[$day];
}
}
if($byday == ''){
$byday = 'MO,TU,WE,TH,FR,SA,SU';
}
$rrule .= ';BYDAY=' . $byday;
}
break;