1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-17 22:28:46 +01:00

Merge pull request #526 from p/ticket/10500

Ticket/10500 Miscellaneous issues in the new template engine
This commit is contained in:
Igor Wiedler 2012-02-14 15:41:15 -08:00
commit dd495e7a14
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -306,7 +306,7 @@ class phpbb_template
*
* @param string $handle Handle of the template to load
* @return phpbb_template_renderer Template renderer object, or null on failure
* @uses template_compile is used to compile template source
* @uses phpbb_template_compile is used to compile template source
*/
private function _tpl_load($handle)
{