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