From 2f2887369eee80bd96de5b722dc8f3a8ec96335e Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 16 Oct 2014 16:33:09 -0400 Subject: [PATCH] Fix bug #12454, loss of from field data when emailing groups --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Operation/Group.pm | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index c5859fb55..d5faf9c74 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.10.29 + - fixed #12454: Email to Group ignores the From field 7.10.28 - fixed: Clearing the caches for groups that don't exist, but have created group objects. diff --git a/lib/WebGUI/Operation/Group.pm b/lib/WebGUI/Operation/Group.pm index 2b6f6089a..3b67dd3c3 100644 --- a/lib/WebGUI/Operation/Group.pm +++ b/lib/WebGUI/Operation/Group.pm @@ -868,6 +868,8 @@ sub www_emailGroupSend { status => 'unread', message => $f->process('message', 'HTMLArea'), sentBy => $session->user->userId, + }, + { overridePerUserDelivery => $f->get('override'), extraHeaders => { from => $f->get('from') } }