disable smarty cache by default in dist

This commit is contained in:
Sebastian Grewe 2013-07-08 14:16:45 +02:00
parent 4ea33a5e50
commit bb0e9dff39

View File

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