Files
smarty/libs/sysplugins/smarty_method_iscachemodifycheck.php

22 lines
257 B
PHP
Raw Normal View History

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