mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-31 12:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			306 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			306 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method disableCompileCheck
 | |
| * 
 | |
| * Disable compile checking
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * Disable compile checking
 | |
| * 
 | |
| * @param object $smarty 
 | |
| */
 | |
| function DisableCompileCheck($smarty)
 | |
| {
 | |
|     $smarty->compile_check = false;
 | |
|     return;
 | |
| } 
 | |
| 
 | |
| ?>
 |