From 5bc3440442798eb83337ce7b915475436038cf7e Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 16 May 2013 12:26:59 +0000 Subject: [PATCH] * Calendar/CalDAV: fixed typo causing time range for sync into past and future to be shorter then default or explicilty set in preferences --- calendar/inc/class.calendar_groupdav.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_groupdav.inc.php b/calendar/inc/class.calendar_groupdav.inc.php index 8a2ce32030..1835295afe 100644 --- a/calendar/inc/class.calendar_groupdav.inc.php +++ b/calendar/inc/class.calendar_groupdav.inc.php @@ -169,7 +169,7 @@ class calendar_groupdav extends groupdav_handler { $value = $name == 'start' ? self::PAST_LIMIT : self::FUTURE_LIMIT; } - $filter[$name] = $this->bo->now + 24*2600*($name == 'start' ? -1 : 1)*abs($value); + $filter[$name] = $this->bo->now + 24*3600*($name == 'start' ? -1 : 1)*abs($value); } if ($this->client_shared_uid_exceptions) // do NOT return (non-virtual) exceptions {