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

@ -59,6 +59,7 @@
- fixed: Thingy: Importing data can fail with some internal field Ids - fixed: Thingy: Importing data can fail with some internal field Ids
- fixed: Thingy: Problem with add_url tmpl_var permissions - fixed: Thingy: Problem with add_url tmpl_var permissions
- fixed: WeatherData asset is broken - fixed: WeatherData asset is broken
- fixed: Calendar multi-day events exported wrong in ical feed
7.5.10 7.5.10
- fix: Syntax error in GetCsMail - fix: Syntax error in GetCsMail

View file

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