fixed: Calendar multi-day events exported wrong in ical feed

This commit is contained in:
Graham Knop 2008-05-13 21:13:31 +00:00
parent dffd70073c
commit 254387c5c5
2 changed files with 2 additions and 0 deletions

View file

@ -549,6 +549,7 @@ sub getIcalEnd {
if ($self->isAllDay) {
my $date = $self->get("endDate");
$date =~ s/\D//g;
$date += 1;
return $date;
}
else {