Files
smarty/libs/sysplugins/method.disablecachemodifycheck.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +00:00

24 lines
317 B
PHP

<?php
/**
* Smarty method disableCacheModifyCheck
*
* Disable cache modify check
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
*
* Disable cache modify check
*/
function disableCacheModifyCheck($smarty)
{
$smarty->cache_modified_check = false;
return ;
}
?>