mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 05:41:37 +01: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;
 | 
						|
    } 
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |