diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginResponse.cs | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index 10a44ed..01de159 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -351,21 +351,26 @@ namespace OpenSim.Services.LLLoginService | |||
351 | { | 351 | { |
352 | TimeZoneInfo gridTimeZone; | 352 | TimeZoneInfo gridTimeZone; |
353 | 353 | ||
354 | try | 354 | // Disabled for now pending making timezone a config value, which can at some point have a default of |
355 | { | 355 | // a ; separated list of possible timezones. |
356 | // First try to fetch DST from Pacific Standard Time, because this is | 356 | // The problem here is that US/Pacific (or even the Olsen America/Los_Angeles) is not universal across |
357 | // the one expected by the viewer. "US/Pacific" is the string to search | 357 | // windows, mac and various distributions of linux, introducing another element of consistency. |
358 | // on linux and mac, and should work also on Windows (to confirm) | 358 | // The server operator needs to be able to control this setting |
359 | gridTimeZone = TimeZoneInfo.FindSystemTimeZoneById("US/Pacific"); | 359 | // try |
360 | } | 360 | // { |
361 | catch (Exception e) | 361 | // // First try to fetch DST from Pacific Standard Time, because this is |
362 | { | 362 | // // the one expected by the viewer. "US/Pacific" is the string to search |
363 | m_log.WarnFormat( | 363 | // // on linux and mac, and should work also on Windows (to confirm) |
364 | "[TIMEZONE]: {0} Falling back to system time. System time should be set to Pacific Standard Time to provide the expected time", | 364 | // gridTimeZone = TimeZoneInfo.FindSystemTimeZoneById("US/Pacific"); |
365 | e.Message); | 365 | // } |
366 | // catch (Exception e) | ||
367 | // { | ||
368 | // m_log.WarnFormat( | ||
369 | // "[TIMEZONE]: {0} Falling back to system time. System time should be set to Pacific Standard Time to provide the expected time", | ||
370 | // e.Message); | ||
366 | 371 | ||
367 | gridTimeZone = TimeZoneInfo.Local; | 372 | gridTimeZone = TimeZoneInfo.Local; |
368 | } | 373 | // } |
369 | 374 | ||
370 | DST = gridTimeZone.IsDaylightSavingTime(DateTime.Now) ? "Y" : "N"; | 375 | DST = gridTimeZone.IsDaylightSavingTime(DateTime.Now) ? "Y" : "N"; |
371 | 376 | ||