From 7532c43d461f99cd03e28d371b7e129e4b3477ad Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Sat, 27 Feb 2010 15:17:00 -0600 Subject: [PATCH] fix 11445 NotifyAboutUsers sends infinite e-mails --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 1a21206b4..7fa4661c1 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,5 +1,6 @@ 7.9.0 - added: Optimized macro parser for perl 5.10 + - fixed #11445: NotifyAboutUsers sends infinite e-mails 7.8.13 - fixed #11418: confusing typ-o in gotcha diff --git a/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm b/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm index 411a5ecb2..7d6e48ed7 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAboutUser.pm @@ -107,7 +107,7 @@ sub execute { $mail->addText($message); $mail->addFooter; $self->session->user({user=>$previousUser}); - return $mail->queue; + $mail->queue; return $self->COMPLETE; }