?? What do you mean ?
Aren't you the one to be supposed to test my suggestions ?
Did it work ?
I'm sorry, but until you validate this, I won't be able to go further, as I do not run any Slovak installation.
So the line to add is still :
- Code: Select all
$url = str_replace( array('č', 'Č'),'c', $url );
But we need to figure out where, eg before :
- Code: Select all
$url = htmlentities($url, ENT_COMPAT, $this->encoding);
Or even before :
- Code: Select all
$url = preg_replace('`&(amp;)?#?[a-z0-9]+;`i','-',$url);
And you'll need as well to test using the numerical entities ('& #269;' and '& #268;' without spaces) in case pasting this line is not enough.
++