Tak, i dlatego Ci nie konwertuje. To:
if ( IPS_DOC_CHAR_SET != 'UTF-8' )
{
/* http://community.invisionpower.com/resources/bugs.html/_/ip-board/i-broke-furls-urls-with-accents-r41236 */
/* AJAX requests have HTML entities, so convert to accents then romanize */
if ( strstr( $text, '' ) )
{
$text = html_entity_decode( $text, ENT_NOQUOTES, 'UTF-8' );
}
$text = self::convertAccents($text);
}
zamień na:
if ( IPS_DOC_CHAR_SET != 'UTF-8' )
{
/* http://community.invisionpower.com/resources/bugs.html/_/ip-board/i-broke-furls-urls-with-accents-r41236 */
/* AJAX requests have HTML entities, so convert to accents then romanize */
if ( strstr( $text, '' ) )
{
$text = html_entity_decode( $text, ENT_NOQUOTES, 'UTF-8' );
}
}
$text = self::convertAccents($text);