I found out some of my topic titles are badly shown
some are :
some-title-some-other-text-t1234.html
while others:
topic-t1234.html
anyone else has this problem maybe?
Version is 3.0.3
Moderator: Moderators


Release thread wrote:Char-setsphpBB3 uses UTF-8 as final encoding, and this should be enough to handle all cases.
UTF-8 is fully supported by this mod.
This mod rewrite will only inject the ASCII Chars ( after removing all accents ) available in the titles.
For example : "نرم افزار - Software niño" will be formated prior to injection in the following way : "software-nino".
It is still possible that some characters only having a decimal HTML/XML entity won't be handled properly at first.
The method to filter these is simple, please ask for help in our forums.



$polskiefind = array(
"\xC4\x85","\xC4\x84", // a,A
"\xC4\x87","\xC4\x86", // c,C
"\xC4\x98","\xC4\x99", // e,E
"\xC5\x82","\xC5\x81", //l, L
"\xC3\xB3","\xC3\x93", // o, O
"\xC5\x9B","\xC5\x9A", //s ,S
"\xC5\xBC","\xC5\xBB", // z,Z
"\xC5\xBA","\xC5\xB9", //z,Z
"\xc5\x84","\xc5\x83" //n,N
);
$polskiereplace = array('a', 'A',
'c', 'C',
'e', 'E',
'l', 'L',
'o', 'O',
's', 'S',
'z', 'Z',
'z', 'Z',
'n', 'N');
$url = str_replace($polskiefind, $polskiereplace, $url );


Users browsing this forum: No registered users and 6 guests