mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-03 05:41:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			297 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			297 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method disableConfigOverwrite
 | 
						|
* 
 | 
						|
* Disable config overwrite mode
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* Disable config overwrite mode
 | 
						|
*/
 | 
						|
function disableConfigOverwrite($smarty)
 | 
						|
{
 | 
						|
    $smarty->config_overwrite = false;
 | 
						|
    return ;
 | 
						|
} 
 | 
						|
?>
 |