X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=run.php;h=20b3111120675cb5545c337015c0e65ed3fb571b;hb=6efe0372c5d3b2db723ada811917b6a52f13130b;hp=3a3d85a2d285e718437186d88f60c0f978bfcfd6;hpb=68b1b4aa2b9362df65a2f57d06634aedd85aa65d;p=wfpl.git diff --git a/run.php b/run.php index 3a3d85a..20b3111 100644 --- a/run.php +++ b/run.php @@ -56,6 +56,8 @@ # RewriteRule ^$ /foo/run.php # RewriteRule .*\.html$ /foo/run.php +require_once('code/wfpl/file_run.php'); + function run_php($basename = false) { if($basename) { $html_file = "$basename.html"; @@ -71,11 +73,15 @@ function run_php($basename = false) { if($php_file != $html_file && file_exists($php_file)) { require_once('code/wfpl/template.php'); if(file_exists($html_file)) tem_load($html_file); - require $php_file; + $other = file_run($php_file); + if($other) { + run_php($other); + return; + } if(file_exists($html_file)) tem_output(); } else { if(file_exists($html_file)) { - require $html_file; + readfile($html_file); } else { header('HTTP/1.0 404 File Not Found'); if(file_exists('404.php') || file_exists('404.html')) {