1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-25 19:11:47 +02:00

[ticket/10500] Fix phpbb_template_compile instantiation.

The required $allow_php argument was missing.

PHPBB3-10500
This commit is contained in:
Oleg Pudeyev
2011-11-27 00:17:22 -05:00
parent b05c658722
commit c4a19a4e3e

@@ -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);