mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Fix vCal 1.0 RRULE issues again :-O
This commit is contained in:
parent
b358505359
commit
bce9456486
@ -551,8 +551,8 @@ class calendar_rrule implements Iterator
|
||||
case self::MONTHLY_MDAY: // date of the month: BYMONTDAY={1..31}
|
||||
break;
|
||||
|
||||
case self::MONTHLY_WDAY: // weekday of the month: BDAY={1..5}{MO..SO}
|
||||
$rrule['BYDAY'] = $this->monthly_byday_num .
|
||||
case self::MONTHLY_WDAY: // weekday of the month: BDAY={1..5}+ {MO..SO}
|
||||
$rrule['BYDAY'] = $this->monthly_byday_num . '+ ' .
|
||||
strtoupper(substr($this->time->format('l'),0,2));
|
||||
$rrule['FREQ'] = $rrule['FREQ'].' '.$rrule['BYDAY'];
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user