X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=metaform%2Ftemplate.php;h=520ca576098bbe16d0abac14a48864b31c8022da;hb=6d9765bdf97af8351ed09c4187869cf05e74e2af;hp=5f59c6de9cc504db573cabdecf7be6d7f2b78a4f;hpb=1c6e9a5776476a1c6f8c5ace08ceaba64ffa05eb;p=wfpl.git diff --git a/metaform/template.php b/metaform/template.php index 5f59c6d..520ca57 100644 --- a/metaform/template.php +++ b/metaform/template.php @@ -11,7 +11,7 @@ # SETUP # To send results by e-mail, all you have to do is set your e-mail address here: -$GLOBALS['~file_name~_form_recipient'] = "fixme@example.com"; +$GLOBALS['~file_name~_form_recipient'] = 'fixme@example.com'; # To save results to a database, you'll need to create the ~table_name~ table # (the file ~file_name~.sql should help with this), and create the file @@ -104,8 +104,6 @@ function ~file_name~_main() { return $ret; } - # sections displayed with tem_show() will be coppied to the main template if you have one. - tem_show('main_body'); } function ~file_name~_display_main() { @@ -173,10 +171,10 @@ function _~file_name~_main() { db_insert('~table_name~', ~file_name upper~_DB_FIELDS, ~php_fields~); message('~singular cap~ saved.'); } - if($GLOBALS['~file_name~_form_recipient'] != "fixme@example.com") { + if($GLOBALS['~file_name~_form_recipient'] != 'fixme@example.com') { $to = $GLOBALS['~file_name~_form_recipient']; - $from = $to; - $reply_to = ''; + $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) {