mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 14:05:21 +02: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;
|
|
}
|
|
|
|
?>
|