mirror of
https://github.com/smarty-php/smarty.git
synced 2026-05-05 12:14:12 +02:00
94b80e892b
- new security_class property (default is Smarty_Security)
22 lines
272 B
PHP
22 lines
272 B
PHP
<?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;
|
|
}
|
|
|
|
?>
|