Sort the country dropdown choices alphabetically in the localization settings. Patch by Vladislav, fixes #4221.

This was SVN commit r18744.
This commit is contained in:
elexis 2016-09-23 08:58:08 +00:00
parent 8f82a97c23
commit 8ce1929966

View File

@ -28,6 +28,7 @@ function init(initData)
if (country != "" && countryListData.indexOf(country) == -1)
countryListData.push(country);
}
countryListData.sort();
// fill the languageList
languageList.list = languageListData;