diff options
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index d58f235fa..c72f460ba 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -475,6 +475,11 @@ $conf['compiled_template_cache_language'] = false; // better performance. $conf['template_compile_check'] = true; +// This forces Smarty to (re)compile templates on every invocation. This is +// handy for development and debugging. It should never be used in a +// production environment. +$conf['template_force_compile'] = false; + // this permit to show the php errors reporting (see INI 'error_reporting' // for possible values) // gives an empty value '' to deactivate |