Hello,
If we let the url title blank, EE will attempt to create url from the title.
if ( ! $url_title)
{
$url_title = strtolower($title);
}
There is the problem - strtolower doesn’t work correct with foreign characters. So that when we send the string to foreign_character_conversion function it wouldn’t work.
