From: Josh Grams Date: Sat, 22 Aug 2009 17:28:18 +0000 (-0400) Subject: * run2.php (run_php): internal variable rename. X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=e86ee66741adaf034eab0b6a9c857cd1caa8cd0c;p=wfpl.git * run2.php (run_php): internal variable rename. --- diff --git a/run2.php b/run2.php index c67c27e..eb8afd0 100644 --- a/run2.php +++ b/run2.php @@ -136,8 +136,8 @@ function run_php($dest = false) { if(file_exists("template.html")) { $template = parse_template_file("template.html"); if($html_exists) { - $subs = parse_template_file($html_file); - $template = merge_templates($template, $subs); + $page_template = parse_template_file($html_file); + $template = merge_templates($template, $page_template); } } elseif($html_exists) { $template = parse_template_file("$html_file");