From aafbf01b8ef05373580e440ec671b7e9d123a697 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 24 Feb 2010 09:42:24 -0800 Subject: [PATCH] Change invitations to use HTML instead of text. Fixes bug #11434. --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Account/Inbox.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 f94aaccea..574e25f05 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -9,6 +9,7 @@ - fixed #11409: 7.7.32 Breaks Code Editor - fixed #11426: Logout page gets cached - fixed #11428: Dataform Date Field Problem + - fixed #11434: Inbox invitation adds text to email instead of html 7.8.12 - fixed #11285: Pasting HTML into Code Editor in IE diff --git a/lib/WebGUI/Account/Inbox.pm b/lib/WebGUI/Account/Inbox.pm index 0c9fca85a..12ad9cce1 100644 --- a/lib/WebGUI/Account/Inbox.pm +++ b/lib/WebGUI/Account/Inbox.pm @@ -956,7 +956,7 @@ sub www_inviteUserSave { my $emailBody = $self->processTemplate( $var, $self->getInviteUserMessageTemplateId ); - $invitation->addText($emailBody); + $invitation->addHtml($emailBody); $invitation->send;