X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=metaform.php;h=656d4e0f7ac19d9e7d365d3f4c692208e49a1a98;hb=74fac1cb550d6a337c67cabdcfae4ad26e34f422;hp=7bfa9f7778af2b604ed90f5436069f3befbd74a8;hpb=030f09ab36a49e16a65163e8a537a7ccdb3061e4;p=wfpl.git diff --git a/metaform.php b/metaform.php index 7bfa9f7..656d4e0 100644 --- a/metaform.php +++ b/metaform.php @@ -71,6 +71,8 @@ function metaform() { tem_set('opt_email', $GLOBALS['opt_email']); $GLOBALS['opt_db'] = format_yesno($_REQUEST['opt_db']); tem_set('opt_db', $GLOBALS['opt_db']); + $GLOBALS['opt_http_pass'] = format_yesno($_REQUEST['opt_http_pass']); + tem_set('opt_http_pass', $GLOBALS['opt_http_pass']); } else { $GLOBALS['form_name'] = 'some_form'; } @@ -284,6 +286,10 @@ function make_php() { $tem->sub('opt_email_1'); $tem->sub('opt_email_2'); } + if($GLOBALS['opt_http_pass'] == 'Yes') { + $tem->sub('opt_http_pass_1'); + $tem->sub('opt_http_pass_2'); + } return $tem->run(); } @@ -293,6 +299,7 @@ function edit_url() { $url = ereg_replace('view_php=[^&]*', 'edit=yes', $url); $url = ereg_replace('download_tar=[^&]*', 'edit=yes', $url); $url = ereg_replace('/[a-z0-9_.]*\?', '/?', $url); + $url = str_replace('jasonwoof.l', 'jasonwoof.com', $url); # so that code generated on Jason's home computer will display a publically accessible link. return $url; } @@ -350,8 +357,10 @@ function download_tar() { ".htaccess" => make_htaccess(), "run.php ->" => 'code/wfpl/run.php', "$name.html" => make_html(), - "$name.sql" => make_sql(), "$name.php" => make_php()); + if($GLOBALS['opt_db'] == 'Yes') { + $data["$name.sql"] = make_sql(); + } if($GLOBALS['opt_email'] == 'Yes') { $data["$name.email.txt"] = make_email(); }