mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-9156 Finish recurring event support in the calendar listing webscript, and add in new unit tests to cover this case
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29235 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -241,6 +241,7 @@ public class GetCalendarEntriesCannedQuery extends AbstractCannedQueryPermission
|
||||
|
||||
private class CalendarEntryImpl extends org.alfresco.repo.calendar.CalendarEntryImpl
|
||||
{
|
||||
private static final long serialVersionUID = 5717119409619436964L;
|
||||
private CalendarEntryImpl(CalendarEntity entity)
|
||||
{
|
||||
super(
|
||||
|
@@ -198,7 +198,7 @@ public class CalendarRecurrenceHelper
|
||||
String freq = params.get("FREQ");
|
||||
String intervalS = params.get("INTERVAL");
|
||||
int interval = 1;
|
||||
if(intervalS == null)
|
||||
if(intervalS != null)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user