From: Jason Woofenden Date: Sat, 17 Sep 2011 16:48:16 +0000 (-0400) Subject: metaform: fix auto-generation of Reply-To email header X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=bacd28efa2bd9965685f75c50f46409414e3d3c1 metaform: fix auto-generation of Reply-To email header --- diff --git a/metaform/template.php b/metaform/template.php index 4db9dad..79d018c 100644 --- a/metaform/template.php +++ b/metaform/template.php @@ -174,10 +174,10 @@ function ~file_name~_main_form($id = false) {~pulldowns {~ $to = $GLOBALS['~file_name~_form_recipient']; $from = 'noreply@~this_domain~'; $reply_to = $to; - if(isset($_REQUEST['email']) and valid_email($_REQUEST['email'])) { - $reply_to = $_REQUEST['email']; - if($_REQUEST['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $_REQUEST['name']) !== false) { - $reply_to = "$_REQUEST[name] <$reply_to>"; + if(isset($data['email']) and valid_email($data['email'])) { + $reply_to = $data['email']; + if($data['name'] and ereg('^[a-zA-Z0-9_\' -]*$', $data['name']) !== false) { + $reply_to = "$data[name] <$reply_to>"; } } $subject = '~plural cap~ form submitted';