* 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:
Tobi Schäfer 2010-12-09 01:43:26 +00:00
parent 3f602c6d5b
commit 2b35e1ddf4
3 changed files with 45 additions and 3 deletions

View file

@ -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;