https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=21923

paxed <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
           See Also|                            |https://bugs.koha-community
                   |                            |.org/bugzilla3/show_bug.cgi
                   |                            |?id=20269

--- Comment #2 from paxed <[email protected]> ---
(In reply to Devinim from comment #1)
> Small typo correction
> 
> Ç,İ,Ö,Ü should come after C,I,O,U.

This is because Koha uses the generic utf8 collation, producing wrong results
for some languages (eg. finnish and swedish) when sorted.

On the database level, change the collation to utf8_turkish_ci or
utf8mb4_turkish_ci, for example:

ALTER TABLE borrowers MODIFY surname LONGTEXT COLLATE utf8mb4_turkish_ci;

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to