Files
smarty/libs/sysplugins/smarty_method_isdefaulttimezone.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

22 lines
280 B
PHP

<?php
/**
* Smarty method isDefaultTimezone
*
* is setting of default timezone
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is setting of default timezone
*/
function isDefaultTimezone($smarty)
{
return $smarty->set_timezone = false;
}
?>