Change invitations to use HTML instead of text. Fixes bug #11434.

This commit is contained in:
Colin Kuskie 2010-02-24 09:42:24 -08:00
parent 0fb7a60917
commit aafbf01b8e
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -956,7 +956,7 @@ sub www_inviteUserSave {
my $emailBody = $self->processTemplate( $var, $self->getInviteUserMessageTemplateId );
$invitation->addText($emailBody);
$invitation->addHtml($emailBody);
$invitation->send;