Fix escaping on one-off emails

This commit is contained in:
james 2009-12-03 21:12:13 +00:00
parent 684a7962f2
commit df3cd54701

View File

@ -579,7 +579,7 @@ case 'dialog_sender':
case "email_send":
$body=getTextFromHtml($_POST['bodyhtml']);
email_send_new($_POST['to'],$_POST['from'],$_POST['subject'],$body,$_POST['bodyhtml']);
email_send_new(stripslashes($_POST['to']),stripslashes($_POST['from']),stripslashes($_POST['subject']),stripslashes($body),stripslashes($_POST['bodyhtml']));
happy_("Email Successfully Sent");
exit;