mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			323 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			323 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method DisableConfigBooleanize
 | 
						|
* 
 | 
						|
* Disable config booleanize mode
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Disable config booleanize mode
 | 
						|
*/
 | 
						|
function  Smarty_Method_DisableConfigBooleanize($smarty)
 | 
						|
{
 | 
						|
    $this->smarty->config_booleanize = false;
 | 
						|
    return;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |