diff options
author | rub <rub@piwigo.org> | 2006-07-31 22:32:23 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-07-31 22:32:23 +0000 |
commit | 7cdf66abf041a3f4319fcfdbc298189a71218bc3 (patch) | |
tree | 75e68c5d9cd17ed66ff5a26c8fb7a22a5e4aa480 /admin/notification_by_mail.php | |
parent | 27aa4d6bfcda49ea9de075b101014a4046b4a923 (diff) |
Resolved Issue ID 0000495.
o Quotes and slashes are not correct on mail content
Merge branch-1_6 r1519:1520 into BSF
git-svn-id: http://piwigo.org/svn/trunk@1521 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/notification_by_mail.php')
-rw-r--r-- | admin/notification_by_mail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/notification_by_mail.php b/admin/notification_by_mail.php index 1a3efeabc..1c3a2e829 100644 --- a/admin/notification_by_mail.php +++ b/admin/notification_by_mail.php @@ -479,7 +479,7 @@ where { if (isset($_POST['send_submit']) and isset($_POST['send_selection']) and isset($_POST['send_customize_mail_content'])) { - $check_key_treated = do_action_send_mail_notification('send', $_POST['send_selection'], $_POST['send_customize_mail_content']); + $check_key_treated = do_action_send_mail_notification('send', $_POST['send_selection'], stripslashes($_POST['send_customize_mail_content'])); do_timeout_treatment('send_selection', $check_key_treated); } } |