Files
smarty/libs/sysplugins/smarty_method_disablecachemodifycheck.php

24 lines
332 B
PHP
Raw Normal View History

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