Bug 291233 - Use numeric sort codes for userlist to fix backwards sorting in Estonian locale.

ChatZilla only.
r=rginda
This commit is contained in:
silver%warwickcompsoc.co.uk 2005-09-03 22:47:42 +00:00
Родитель 71703e6c3a
Коммит 901e07f3d3
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4185,8 +4185,8 @@ function usr_updres()
}
}
// Counts up from Z to A.
var sortname = String.fromCharCode(90 - modeLevel) + "-" + this.unicodeName;
// Counts numerically down from 9.
var sortname = (9 - modeLevel) + "-" + this.unicodeName;
// We want to show mode symbols, but only those we don't 'style'.
if (mode && !mode.match(/^[@%+]$/))