aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/compile_template.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-02-17 13:51:31 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-02-17 13:51:31 +0100
commitfa5f094197e4361aec36441c747c6355cb4b2564 (patch)
tree2f2ccfb647f1c4fa9372c60fa922eff90decd9ce /phpBB/develop/compile_template.php
parentd70c3f1eb8c0ddc68d8eda1bd8708c4957c21182 (diff)
parenta24ba9dc2db66309851476a7436db483089f8988 (diff)
downloadforums-fa5f094197e4361aec36441c747c6355cb4b2564.tar
forums-fa5f094197e4361aec36441c747c6355cb4b2564.tar.gz
forums-fa5f094197e4361aec36441c747c6355cb4b2564.tar.bz2
forums-fa5f094197e4361aec36441c747c6355cb4b2564.tar.xz
forums-fa5f094197e4361aec36441c747c6355cb4b2564.zip
Merge branch 'develop' into ticket/10380
* develop: [ticket/10652] Fixing typo in template class [ticket/10645] Missing CSS for checkboxes [ticket/10614] Change not installed heading to available. [ticket/10614] Unbreak all_available on extension manager. [ticket/10614] Check if cache exists before destroying it [ticket/10614] Remove ext manager exceptions for now [ticket/10614] Refactor list command to use manager API [ticket/10614] Add purge command [ticket/10614] Tweak list output, show state, purge cache, handle missing exts [ticket/10614] Make script accessible from anywhere [ticket/10614] Better usage output [ticket/10614] Add a script to enable, disable and view status of extensions. [ticket/10500] Use correct class name in @uses. [ticket/10500] Fix phpbb_template_compile instantiation.
Diffstat (limited to 'phpBB/develop/compile_template.php')
-rw-r--r--phpBB/develop/compile_template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/compile_template.php b/phpBB/develop/compile_template.php
index e741e909d8..32d1d321f1 100644
--- a/phpBB/develop/compile_template.php
+++ b/phpBB/develop/compile_template.php
@@ -20,5 +20,5 @@ include($phpbb_root_path . 'includes/template_compile.'.$phpEx);
$file = $argv[1];
-$compile = new phpbb_template_compile();
+$compile = new phpbb_template_compile(false);
echo $compile->compile_file($file);