Skip to content
Snippets Groups Projects
Commit dbf8f666 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix default for "U.S. Time Zone" toggle when west of UTC

... when current timezone is negative offset from UTC, but not a US time zone,
the default should be "No".
parent 261324a6
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ int edit_sys_timezone(int page, int total)
int i;
int bar;
i = !(cfg.sys_timezone & US_ZONE);
i = OTHER_ZONE(cfg.sys_timezone) || !(cfg.sys_timezone & US_ZONE);
uifc.helpbuf=
"`United States Time Zone:`\n"
"\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment