mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 14:35:19 +02:00
27 lines
421 B
PHP
27 lines
421 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method enableCacheModifyCheck
|
|
*
|
|
* Enable cache modify check
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Smarty class enableCacheModifyCheck
|
|
*
|
|
* Enable cache modify check
|
|
*/
|
|
class Smarty_Method_enableCacheModifyCheck extends Smarty_Internal_Base {
|
|
public function execute()
|
|
{
|
|
$this->smarty->cache_modified_check = true;
|
|
return;
|
|
}
|
|
}
|
|
|
|
?>
|