Fixed bug causing recurring events not to get generated past today's date.
This commit is contained in:
parent
b08a362bd8
commit
79ba9cef09
1 changed files with 1 additions and 1 deletions
|
|
@ -315,7 +315,7 @@ sub www_editEventSave {
|
|||
if ($session{form}{eid} eq "new") {
|
||||
$session{form}{name} = $session{form}{name} || "unnamed";
|
||||
$session{form}{eid} = getNextId("EventsCalendar_eventId");
|
||||
$until = WebGUI::FormProcessor::date($session{form}{until});
|
||||
$until = WebGUI::FormProcessor::date("until");
|
||||
$until = $endDate[0] unless ($until >= $endDate[0]);
|
||||
$eventId[0] = getNextId("EventsCalendar_eventId");
|
||||
$session{form}{interval} = 1 if ($session{form}{interval} < 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue