game/onyx2/modules/templates/smarty/sysplugins/smarty_method_disablecachemodifycheck.php

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 ;
}
?>