In AdminCP > VaultWiki > Wiki URL Manager, create replacement maps to convert the accents you use to the letters you want them sorted under. Note that this will also change them in the URL and in the index overall. You will have to reindex All URLs after making your changes. For categories, you will have to use Wiki Maintenance Tools > Clean Article Post Cache in order to expire the cache - but the list in the categories will still take a while to update itself.
For sites that have UTF-8 support enabled, we don't automatically convert accented characters because they are sometimes used as one of the bytes in a double-byte character, and in some languages they do not translate as you would expect.
Then, in vault/functions/category.php, find:
Code:
$test = $vault->encode->encode($contents['letter']);
Replace with:
Code:
$contents['letter'] = $test = $vault->encode->encode($contents['letter']);
Bookmarks