mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 04:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			278 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			278 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method disableForceCompile
 | |
| * 
 | |
| * Disable forced compiling
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * Disable forced compiling
 | |
| */
 | |
| function disableForceCompile($smarty)
 | |
| {
 | |
|     $smarty->force_compile = false;
 | |
|     return;
 | |
| } 
 | |
| 
 | |
| ?>
 |