Files
smarty/libs/sysplugins/smarty_method_enablecachemodifycheck.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

23 lines
307 B
PHP

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