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

Merge pull request 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
2 changed files with 2 additions and 2 deletions
phpBB
develop
includes
template

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

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