Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
fix(notification): quite problem in generated emails
Browse files Browse the repository at this point in the history
impacts only some email clients

Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed Oct 11, 2018
1 parent 81bf6a2 commit 38ea64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/install.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public function createNotificationTargetInvitation() {
'language' => '',
'subject' => addcslashes($data['subject'], "'\""),
'content_text' => addcslashes($data['content_text'], "'\""),
'content_html' => addcslashes(htmlentities($contentHtml), "'\""),
'content_html' => addcslashes(htmlentities($contentHtml, ENT_NOQUOTES | ENT_HTML401), "'\""),
]);

// Create the notification
Expand Down

0 comments on commit 38ea64c

Please sign in to comment.