disable smarty cache by default in dist

This commit is contained in:
Sebastian Grewe 2013-07-08 14:16:45 +02:00
parent bffeea07c9
commit e0275566ae

View File

@ -371,6 +371,6 @@ $config['cookie']['domain'] = '';
* cache = 0, disabled
* cache_lifetime = 30 seconds
**/
$config['smarty']['cache'] = 1;
$config['smarty']['cache'] = 0;
$config['smarty']['cache_lifetime'] = 30;
?>