mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 14:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			295 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			295 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
* Smarty method IsDefaultTimezone
 | 
						|
* 
 | 
						|
* is setting of default timezone
 | 
						|
* 
 | 
						|
* @package Smarty
 | 
						|
* @subpackage SmartyMethod
 | 
						|
* @author Uwe Tews 
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
* is setting of default timezone
 | 
						|
*/
 | 
						|
function  Smarty_Method_IsDefaultTimezone($smarty)
 | 
						|
{
 | 
						|
    return $smarty->set_timezone = false;
 | 
						|
} 
 | 
						|
 | 
						|
?>
 |