You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a standard ICS format that I have:
FREQ=DAILY;INTERVAL=1;COUNT=3;WKST=SU
can you/I help update the code so that it parses this format too please?
The text was updated successfully, but these errors were encountered:
For WKST, add a $weekStart property to RecurrenceRule, and then update RecurrenceRule::__toString() and RecurrenceRule::parse() to handle the WKST attribute, in the same manner the other attributes are being handled.
For COUNT, you only need to update RecurrenceRule::parse(), since it's already taken care of in the RecurrenceRule::__toString() method.
This is a standard ICS format that I have:
FREQ=DAILY;INTERVAL=1;COUNT=3;WKST=SU
can you/I help update the code so that it parses this format too please?
The text was updated successfully, but these errors were encountered: