X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=metaform.php;h=ee5b9422cc115c2dd5f7f7ec75b3777c6a6f04c0;hb=3f276370f699ae7ed6df930818d8e6c765d856f4;hp=0f7563e6dba9890ca02414d173834a262d4da300;hpb=1c6e9a5776476a1c6f8c5ace08ceaba64ffa05eb;p=wfpl.git diff --git a/metaform.php b/metaform.php index 0f7563e..ee5b942 100644 --- a/metaform.php +++ b/metaform.php @@ -200,7 +200,7 @@ function view_sql() { function find_always_field($fields) { foreach($fields as $field) { list($name, $type, $input, $format, $sql) = $field; - if($input != 'submit' && $input != 'checkbox' && $input != 'radio') { + if($input != 'submit' && $input != 'image' && $input != 'checkbox' && $input != 'radio') { return $name; } } @@ -434,12 +434,16 @@ function make_php() { $tem->show('opt_db_5'); } if($GLOBALS['opt_email'] == 'Yes') { + $this_domain = $_SERVER['HTTP_HOST']; + if(substr($this_domain, -2) == '.l') { + $this_domain = substr($this_domain, 0, -1) . 'com'; + } + $tem->set('this_domain', $this_domain); $tem->show('opt_email_1'); $tem->show('opt_email_2'); } if($GLOBALS['opt_pass'] == 'Yes') { $tem->show('opt_pass'); - $tem->show('opt_pass'); } return $tem->run(); }