fixed: Calendar multi-day events exported wrong in ical feed
This commit is contained in:
parent
dffd70073c
commit
254387c5c5
2 changed files with 2 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue