aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2006-07-31 22:28:31 +0000
committerrub <rub@piwigo.org>2006-07-31 22:28:31 +0000
commit72c3d9a6cdcf2c1e01d0fc3104bd766be7f08b43 (patch)
treee31dfef3fcb70165b2aa941f45355570b90505eb
parentd4dffe6e044c696186c34932020b58a9b6851ec4 (diff)
Resolved Issue ID 0000495.
o Quotes and slashes are not correct on mail content git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1520 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/notification_by_mail.php2
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);
}
}