fixed: Invitation EMails Escape Characters
This commit is contained in:
parent
2f72b6352c
commit
89266ddf58
2 changed files with 2 additions and 1 deletions
|
|
@ -22,6 +22,7 @@
|
||||||
- fixed: DateTime Form Control Bug
|
- fixed: DateTime Form Control Bug
|
||||||
- fixed: Tree Menu is always collapsed
|
- fixed: Tree Menu is always collapsed
|
||||||
- fixed: Form/Date and Form/DateTime to properly return MySQL formatted and epoch formatted times
|
- fixed: Form/Date and Form/DateTime to properly return MySQL formatted and epoch formatted times
|
||||||
|
- fixed: Invitation EMails Escape Characters
|
||||||
|
|
||||||
7.5.18
|
7.5.18
|
||||||
- fixed: Collateral Image Manager broken in Firefox 3
|
- fixed: Collateral Image Manager broken in Firefox 3
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@ sub www_inviteUserSave {
|
||||||
);
|
);
|
||||||
|
|
||||||
##No sneaky attack paths...
|
##No sneaky attack paths...
|
||||||
$message = WebGUI::HTML::filter($message);
|
$message = WebGUI::HTML::html2text(WebGUI::HTML::filter($message));
|
||||||
|
|
||||||
##Create the invitation url.
|
##Create the invitation url.
|
||||||
my $inviteId = $session->id->generate();
|
my $inviteId = $session->id->generate();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue