From f83b48983772712e67afc7a6eda7f78798011e38 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 8 Dec 2010 11:27:12 -0800 Subject: [PATCH] Do not retry bad events for extending recurrence. --- lib/WebGUI/Workflow/Activity/ExtendCalendarRecurrences.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/WebGUI/Workflow/Activity/ExtendCalendarRecurrences.pm b/lib/WebGUI/Workflow/Activity/ExtendCalendarRecurrences.pm index e6d9c8ba6..26fa4fae8 100644 --- a/lib/WebGUI/Workflow/Activity/ExtendCalendarRecurrences.pm +++ b/lib/WebGUI/Workflow/Activity/ExtendCalendarRecurrences.pm @@ -74,8 +74,8 @@ sub execute { return $self->COMPLETE unless $piped; my ( $recurId, $rest ) = split /\|/, $piped, 2; - $self->processRecurrence( $recurId, $timeLimit ) - and $piped = $rest; + $self->processRecurrence( $recurId, $timeLimit ); + $piped = $rest; } $instance->setScratch( recurrences => $piped );