fixed: Invitation EMails Escape Characters

This commit is contained in:
Yung Han Khoe 2008-08-05 08:53:39 +00:00
parent 2f72b6352c
commit 89266ddf58
2 changed files with 2 additions and 1 deletions

View file

@ -22,6 +22,7 @@
- fixed: DateTime Form Control Bug
- fixed: Tree Menu is always collapsed
- fixed: Form/Date and Form/DateTime to properly return MySQL formatted and epoch formatted times
- fixed: Invitation EMails Escape Characters
7.5.18
- fixed: Collateral Image Manager broken in Firefox 3

View file

@ -121,7 +121,7 @@ sub www_inviteUserSave {
);
##No sneaky attack paths...
$message = WebGUI::HTML::filter($message);
$message = WebGUI::HTML::html2text(WebGUI::HTML::filter($message));
##Create the invitation url.
my $inviteId = $session->id->generate();