CC-1894: Warn users about time zone differences or clock drift problems on the server

-Now using timezone offsets from UTC instead of regions to compare timezones between pypo and the airtime webserver
This commit is contained in:
martin 2011-03-23 22:14:57 -04:00
parent 36a68aa589
commit 8a2610aa84
2 changed files with 9 additions and 7 deletions

View file

@ -716,7 +716,7 @@ class Schedule {
$result['stream_metadata'] = array();
$result['stream_metadata']['format'] = Application_Model_Preference::GetStreamLabelFormat();
$result['stream_metadata']['station_name'] = Application_Model_Preference::GetStationName();
$result['server_timezone'] = date_default_timezone_get();
$result['server_timezone'] = date('O');
return $result;
}