mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			307 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			307 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method EnableCacheModifyCheck
 | |
| * 
 | |
| * Enable cache modify check
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * Enable cache modify check
 | |
| */
 | |
| function  Smarty_Method_EnableCacheModifyCheck($smarty)
 | |
| {
 | |
|     $smarty->cache_modified_check = true;
 | |
|     return;
 | |
| } 
 | |
| 
 | |
| ?>
 |