In the alliance memberlist one can sort by score. But the thousand separator was interpreted as decimal separator by the sorting plugin (jQuery TableSorter).
That means a score of 1042 (1.042) was sorted in between 1 and 2.
with the permission from @louis88
I had to add a new parser for the sorting library, so I could remove the point while sorting by score. For example "1.042" is now transformed to "1042" and then correctly interpreted as the number 1042.