mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-10-30 20:01:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			268 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			268 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
| * Smarty method DisableDebugging
 | |
| * 
 | |
| * Disable debugging
 | |
| * 
 | |
| * @package Smarty
 | |
| * @subpackage SmartyMethod
 | |
| * @author Uwe Tews 
 | |
| */
 | |
| 
 | |
| /**
 | |
| * Disable debugging
 | |
| */
 | |
| function  Smarty_Method_DisableDebugging($smarty)
 | |
| {
 | |
|     $smarty->debugging = false;
 | |
|     return;
 | |
| } 
 | |
| ?>
 |