Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_disablecachemodifycheck.php
1 <?php
3 /**
4 * Smarty method DisableCacheModifyCheck
5
6 * Disable cache modify check
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14
15 * Disable cache modify check
16 */
17 function  Smarty_Method_DisableCacheModifyCheck($smarty)
18     {
19         $smarty->cache_modified_check = false;
20         return ;
21     } 
23 ?>