* Added patch to prevent locales and timezones from being set to wrong values in modified dropdown menus.
* Commented out client-side code hiding “Etc” timezones in the preferences’ dropdown to prevent wrong settings. * Added localized timezone name in dropdown menu (only visible in JavaScript-disabled clients). Fixes issue 128.
This commit is contained in:
parent
3f602c6d5b
commit
2b35e1ddf4
3 changed files with 45 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ $(function() {
|
|||
var zone = $(item);
|
||||
var parts = zone.val().split("/");
|
||||
if (parts.length > 1) {
|
||||
if (parts[0].indexOf("Etc") === 0 ||
|
||||
if (/* parts[0].indexOf("Etc") === 0 || */
|
||||
parts[0].indexOf("SystemV") === 0) {
|
||||
zone.remove();
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue