mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			270 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			270 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method EnableDebugging
 | 
						|
* 
 | 
						|
* Enable debugging
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Enable debugging
 | 
						|
*/
 | 
						|
function  Smarty_Method_EnableDebugging($smarty)
 | 
						|
{
 | 
						|
    $this->smarty->debugging = true;
 | 
						|
    return;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |