[Vtigercrm-commits] [vtiger-commits] r5642 - /vtigercrm/trunk/Smarty/libs/Smarty.class.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue May 2 05:17:13 EDT 2006
Author: richie
Date: Tue May 2 03:17:05 2006
New Revision: 5642
Log:
enabled cache
cache time set to 5secs
Modified:
vtigercrm/trunk/Smarty/libs/Smarty.class.php
Modified: vtigercrm/trunk/Smarty/libs/Smarty.class.php
==============================================================================
--- vtigercrm/trunk/Smarty/libs/Smarty.class.php (original)
+++ vtigercrm/trunk/Smarty/libs/Smarty.class.php Tue May 2 03:17:05 2006
@@ -138,7 +138,7 @@
*
* @var boolean
*/
- var $compile_check = true;
+ var $compile_check = false;
/**
* This forces templates to compile every time. Useful for development
@@ -157,7 +157,7 @@
* </ul>
* @var integer
*/
- var $caching = 0;
+ var $caching = 1;
/**
* The name of the directory for cache files.
@@ -175,7 +175,7 @@
*
* @var integer
*/
- var $cache_lifetime = 3600;
+ var $cache_lifetime = 5;
/**
* Only used when $caching is enabled. If true, then If-Modified-Since headers
@@ -185,7 +185,7 @@
*
* @var boolean
*/
- var $cache_modified_check = false;
+ var $cache_modified_check = true;
/**
* This determines how Smarty handles "<?php ... ?>" tags in templates.
More information about the vtigercrm-commits
mailing list