Files
ventas_php/libs/sysplugins/smarty_method_iscachemodifycheck.php

22 lines
272 B
PHP
Executable File

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