Projects
Kolab:Winterfell
roundcubemail-plugins-kolab
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 36
View file
roundcubemail-plugins-kolab.spec
Changed
@@ -24,7 +24,7 @@ Name: roundcubemail-plugins-kolab Version: 3.3 -Release: 0.20160309.git%{?dist} +Release: 0.20160310.git%{?dist} Summary: Kolab Groupware plugins for Roundcube Webmail Group: Applications/Internet
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -roundcubemail-plugins-kolab (1:3.3~dev20160309-0~kolab1) unstable; urgency=low +roundcubemail-plugins-kolab (1:3.3~dev20160310-0~kolab1) unstable; urgency=low * fix package version: we need epoch 1
View file
roundcubemail-plugins-kolab-3.3.tar.gz/plugins/libkolab/lib/kolab_date_recurrence.php
Changed
@@ -49,8 +49,11 @@ if (is_object($data['start']) && is_object($data['end'])) $this->duration = $data['start']->diff($data['end']); - else - $this->duration = new DateInterval('PT' . ($data['end'] - $data['start']) . 'S'); + else { + // Prevent from errors when end date is not set (#5307) RFC5545 3.6.1 + $seconds = !empty($data['end']) ? ($data['end'] - $data['start']) : 0; + $this->duration = new DateInterval('PT' . $seconds . 'S'); + } } /**
View file
roundcubemail-plugins-kolab-3.3.tar.gz/plugins/libkolab/lib/kolab_format_event.php
Changed
@@ -191,6 +191,10 @@ $object['end'] = clone $object['start']; $object['end']->add($interval); } + // make sure end date is specified (#5307) RFC5545 3.6.1 + else if (!$object['end'] && $object['start']) { + $object['end'] = clone $object['start']; + } // organizer is part of the attendees list in Roundcube if ($object['organizer']) {
View file
roundcubemail-plugins-kolab.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail-plugins-kolab Binary: roundcubemail-plugins-kolab Architecture: all -Version: 1:3.3~dev20160309-0~kolab1 +Version: 1:3.3~dev20160310-0~kolab1 Maintainer: Christoph Wickert <wickert@kolabsys.com> Uploaders: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>, Paul Klos <kolab@klos2day.nl> Standards-Version: 3.9.3
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.