diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-11-25 17:04:15 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-05-04 14:43:58 +0200 |
commit | f821130c3a4a22efd491aaad962cc84a82dde56a (patch) | |
tree | 49b79a2cbe5283210667bd1da9495694c5296863 /phpBB/phpbb/template/twig | |
parent | 6be8841a5732009e28c2362b197e4492c6ea8aa7 (diff) | |
download | forums-f821130c3a4a22efd491aaad962cc84a82dde56a.tar forums-f821130c3a4a22efd491aaad962cc84a82dde56a.tar.gz forums-f821130c3a4a22efd491aaad962cc84a82dde56a.tar.bz2 forums-f821130c3a4a22efd491aaad962cc84a82dde56a.tar.xz forums-f821130c3a4a22efd491aaad962cc84a82dde56a.zip |
[ticket/12632] Add twig.debug and twig.auto_reload in config.yml
PHPBB3-13206
PHPBB3-12632
Diffstat (limited to 'phpBB/phpbb/template/twig')
-rw-r--r-- | phpBB/phpbb/template/twig/environment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/template/twig/environment.php b/phpBB/phpbb/template/twig/environment.php index 0ba7a265e4..fcd0566b6e 100644 --- a/phpBB/phpbb/template/twig/environment.php +++ b/phpBB/phpbb/template/twig/environment.php @@ -60,7 +60,7 @@ class environment extends \Twig_Environment $options = array_merge(array( 'cache' => (defined('IN_INSTALL')) ? false : $cache_path, - 'debug' => defined('DEBUG'), + 'debug' => false, 'auto_reload' => (bool) $this->phpbb_config['load_tplcompile'], 'autoescape' => false, ), $options); |