From dfd46aefed08cc3057603557b70580b0607311dc Mon Sep 17 00:00:00 2001 From: cuthulino Date: Sun, 3 Jul 2016 17:07:23 +0200 Subject: [PATCH] Changed Time Filter Filter searched for VALARM but not every VTODO got an Alarm. Filtering by the creation date is much better and works. --- CalDAVClient.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CalDAVClient.php b/CalDAVClient.php index 10a2eb6..7f0e58c 100644 --- a/CalDAVClient.php +++ b/CalDAVClient.php @@ -991,11 +991,11 @@ function GetTodos( $start = null, $finish = null, $completed = null, $cancelled $this->SetDepth('1'); if ( isset($start) && isset($finish) ) - $range = ""; + $range = ""; elseif ( isset($start) && ! isset($finish) ) - $range = ""; + $range = ""; elseif ( ! isset($start) && isset($finish) ) - $range = ""; + $range = ""; else $range = '';