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:
Nick Burch
2011-07-20 17:44:55 +00:00
parent 858748ddf1
commit aaf02b7f6c
2 changed files with 2 additions and 1 deletions

View File

@@ -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
{