From 08db6b50365295f911aa3f63a6848e3a0f02c579 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 19 Jan 2009 18:45:05 +0000 Subject: [PATCH] Emails sent about low stock should have status unread, not completed. --- lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm b/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm index f31451c35..c4e7cd4b1 100644 --- a/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm +++ b/lib/WebGUI/Workflow/Activity/NotifyAboutLowStock.pm @@ -128,7 +128,7 @@ sub execute { if ($belowThreshold) { my $inbox = WebGUI::Inbox->new($self->session); $inbox->addMessage({ - status => 'completed', + status => 'unread', subject => $self->get('subject'), groupId => $self->get('toGroup'), message => $message,