Zmieniłem według zalecenia niestety nie pomogło. Całą pamięć przebudowałem.
static public function makeSeoTitle( $text )
{
if ( ! $text )
{
return '';
}
/* Strip all HTML tags first */
$text = strip_tags($text);
/* Remove specific hex characters (/,<,>) as it confuses redirect engine */
$text = preg_replace( '#%(2f|3c|3e)#i', '', $text );
/* Preserve other %data */
$text = preg_replace('#%([a-fA-F0-9][a-fA-F0-9])#', '-xx-$1-xx-', $text);
$text = str_replace( array( '%', '`' ), '', $text);
$text = preg_replace('#-xx-([a-fA-F0-9][a-fA-F0-9])-xx-#', '%$1', $text);
/* Convert accented chars */
$text = self::convertAccents($text); // See http://community.invisionpower.com/resources/bugs.html/_/ip-board/transliteration-r37146