diff --git a/docs/upgrades/upgrade_7.3.18-7.3.19.pl b/docs/upgrades/upgrade_7.3.18-7.3.19.pl index 71702e703..050605aa4 100644 --- a/docs/upgrades/upgrade_7.3.18-7.3.19.pl +++ b/docs/upgrades/upgrade_7.3.18-7.3.19.pl @@ -44,12 +44,9 @@ sub resequenceWorkflowActivities { my $session = shift; print "\tFix sequencing problems in Workflow Activities. This will take a while.\n" unless ($quiet); my $workflows = WebGUI::Workflow->getList($session, undef, 1); ##Hack to get around non-existant mode column - $session->errorHandler->warn("after getList"); my ($workflowId, $title); while ( ($workflowId, $title) = each %{ $workflows } ) { - $session->errorHandler->warn($workflowId . ':' . $title); my $workflow = WebGUI::Workflow->new($session, $workflowId); - $session->errorHandler->warn("after getList"); next unless defined $workflow; $workflow->reorderActivities; }