mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 22:45:20 +02:00
23 lines
305 B
PHP
23 lines
305 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method disableDefaultTimezone
|
|
*
|
|
* Disable setting of default timezone
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Disable setting of default timezone
|
|
*/
|
|
function disableDefaultTimezone($smarty)
|
|
{
|
|
$smarty->set_timezone = false;
|
|
return;
|
|
}
|
|
|
|
?>
|