order keywords alphabetically (#4478)

This commit is contained in:
Frédéric Péters 2014-03-14 18:34:59 +01:00
parent f9d61690c6
commit 857011677d
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class ThesaurusKeywordsWidget(SequenceWidget):
thesaurus_path = '/'.join(thesaurus.getPhysicalPath())
value = []
for token in self.value:
for token in sorted(self.value):
# Ignore no value entries. They are in the request only.
if token == self.noValueToken:
continue