fix missing namespace on warning
This commit is contained in:
parent
9a03c2c16a
commit
e4d3394888
|
@ -3,7 +3,7 @@ var server_utc_offset = <?php
|
||||||
$tz = ini_get('date.timezone');
|
$tz = ini_get('date.timezone');
|
||||||
if (!$tz) {
|
if (!$tz) {
|
||||||
$tz = 'UTC';
|
$tz = 'UTC';
|
||||||
Warning('Timezone has not been set. Either select it in Options->System->Timezone or in php.ini');
|
ZM\Warning('Timezone has not been set. Either select it in Options->System->Timezone or in php.ini');
|
||||||
}
|
}
|
||||||
|
|
||||||
$TimeZone = new DateTimeZone($tz);
|
$TimeZone = new DateTimeZone($tz);
|
||||||
|
|
Loading…
Reference in New Issue