Better default multiplier.

This commit is contained in:
Andrew McMillan 2009-05-12 13:15:06 +12:00
parent 52e0f29dbd
commit e6fbf5e2ff

View File

@ -542,7 +542,7 @@ BEGIN
IF rrule.freq = 'DAILY' THEN
loopmax := max_count * 20;
ELSIF rrule.freq = 'WEEKLY' THEN
loopmax := max_count * 3;
loopmax := max_count * 10;
ELSE
loopmax := max_count;
END IF;