Skip to content

Commit

Permalink
Fix problem with importing weekly repeats. See GitHub Issues #3485.
Browse files Browse the repository at this point in the history
  • Loading branch information
campbell-m committed Aug 6, 2023
1 parent 4a97d51 commit b9d72dd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/functions_ical.inc
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ function get_repeat_rule(string $rrule, int $start_time, array &$errors)
if (isset($rules['BYDAY']))
{
$byday_days = explode(',', $rules['BYDAY']);
$byday_days = array_map(__NAMESPACE__ . '\\ICalendar\\RFC5545::convertDayToOrd', $byday_days);
}
else
{
Expand Down

0 comments on commit b9d72dd

Please sign in to comment.