Accept exact matches of RDATE entries

This commit is contained in:
Thomas Bruederli 2014-03-17 11:45:16 +01:00
parent 985286cbcb
commit 338f1ce36d

View file

@ -793,7 +793,7 @@ class Horde_Date_Recurrence
$next->year = $rdate->year;
$next->month = $rdate->month;
$next->mday = $rdate->mday;
if ($next->compareDateTime($after) > 0) {
if ($next->compareDateTime($after) >= 0) {
return $next;
}
}