diff options
author | patdenice <patdenice@piwigo.org> | 2010-03-20 23:14:30 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2010-03-20 23:14:30 +0000 |
commit | 6e51794b3f225a01f221fcc198b7c802b70ff987 (patch) | |
tree | 53b2d672dab4ac0ad20f3bbb4b42b200ae030662 /include/config_default.inc.php | |
parent | af78fa6193f7fec2bad09315aa1fb512d3c9a6fc (diff) |
feature 1522: Move local css local files and local language files to local directory.
Add $conf['template_force_compile'] to help developpers.
git-svn-id: http://piwigo.org/svn/trunk@5208 68402e56-0260-453c-a942-63ccdbb3a9ee
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 |