@@ -, +, @@ - Make sure you have three records with titles that begin with ÆØÅ respectively - Do a search that turns up those three records and some others, and sort the results by title, bot ascending and descending. - Verify that ÆØÅ is shown in some weird order. - Edit your sort-string-utf.chr* so it is in line with the current patch. It should include these two lines: lowercase {0-9}{a-z}æøå uppercase {0-9}{A-Z}ÆØÅ - Restart Zebra and reindex all the records, e.g.: $ sudo koha-restart-zebra $ sudo koha-rebuild-zebra -f -v - Do the search again, make sure you order by title and check that ÆØÅ are sorted in the order of 1. Æ 2. Ø 3. Å, and after all other characters --- etc/zebradb/lang_defs/nb/sort-string-utf.chr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/etc/zebradb/lang_defs/nb/sort-string-utf.chr +++ a/etc/zebradb/lang_defs/nb/sort-string-utf.chr @@ -3,10 +3,10 @@ encoding utf-8 -# Define the basic value-set. *Beware* of changing this without re-indexing -# your databases. -lowercase {0-9}aæbcdefghijklmnopqrstuvwxyzø -uppercase {0-9}AÆBCDEFGHIJKLMNOPQRSTUVWXYZØ +# Define the basic value-set and sort order +# *Beware* of changing this without re-indexing your databases. +lowercase {0-9}{a-z}æøå +uppercase {0-9}{A-Z}ÆØÅ # Breaking characters --