Skip to content

Commit ac58b91

Browse files
author
Jason Oster
committed
Merge with 2.4 branch.
1 parent e291cce commit ac58b91

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

functions/parse/recur_functions.php

+1-4
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,14 @@ function add_recur($times, $freq = '') {
4545
($date <= $until_date)) {
4646
$count--;
4747
if (($time >= $mArray_begin) &&
48-
($time <= $mArray_end)
48+
($time <= $mArray_end) &&
4949
($count >= 0)) {
5050
$recur_data[] = $time;
5151
}
5252
}
5353
else if (in_array($date, $except_dates)) {
5454
$count--;
5555
}
56-
else if (in_array($date, $except_dates)) {
57-
$count--;
58-
}
5956
}
6057
#dump_times($recur_data);
6158
return;

0 commit comments

Comments
 (0)