aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-07-04 13:19:03 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-07-04 13:19:03 -0500
commit864465761f45fec2732381849ee9959d7ad9b45d (patch)
tree3778bd58843ff31bf399e76ad47212315550b80d
parent5f03321fac6ce888cb870e158c685bf839c25f07 (diff)
downloadforums-864465761f45fec2732381849ee9959d7ad9b45d.tar
forums-864465761f45fec2732381849ee9959d7ad9b45d.tar.gz
forums-864465761f45fec2732381849ee9959d7ad9b45d.tar.bz2
forums-864465761f45fec2732381849ee9959d7ad9b45d.tar.xz
forums-864465761f45fec2732381849ee9959d7ad9b45d.zip
[feature/twig] Fix debug code
PHPBB3-11598
-rw-r--r--phpBB/includes/template/twig/twig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/twig/twig.php b/phpBB/includes/template/twig/twig.php
index 47e346ad1e..621bfe0f4f 100644
--- a/phpBB/includes/template/twig/twig.php
+++ b/phpBB/includes/template/twig/twig.php
@@ -132,7 +132,7 @@ class phpbb_template_twig implements phpbb_template
array(
'cache' => $this->cachepath,
'debug' => defined('DEBUG'),
- 'auto_reload' => true,//(bool) $this->config['load_tplcompile'],
+ 'auto_reload' => (bool) $this->config['load_tplcompile'],
'autoescape' => false,
)
);