Accept exact matches of RDATE entries
This commit is contained in:
parent
985286cbcb
commit
338f1ce36d
1 changed files with 1 additions and 1 deletions
|
@ -793,7 +793,7 @@ class Horde_Date_Recurrence
|
||||||
$next->year = $rdate->year;
|
$next->year = $rdate->year;
|
||||||
$next->month = $rdate->month;
|
$next->month = $rdate->month;
|
||||||
$next->mday = $rdate->mday;
|
$next->mday = $rdate->mday;
|
||||||
if ($next->compareDateTime($after) > 0) {
|
if ($next->compareDateTime($after) >= 0) {
|
||||||
return $next;
|
return $next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue