Два варианта.1. Либо обновить DLE до актуальной версии.2. Либо произвести следующие действия:Во всех php файлах в папке /engine/forum/ajax найти:if (!function_exists(\'convert_unicode\')){function convert_unicode($t, $to = \'windows-1251\'){$to = strtolower($to);if ($to == \'utf-8\') {return urldecode($t);} else {if( function_exists(\"get_magic_quotes_gpc\") && get_magic_quotes_gpc() ) $t = stripslashes( $t );if ( function_exists(\'iconv\') ) $t = iconv(\"UTF-8\", $to.\"//IGNORE\", $t);else $t = \"The library iconv is not supported by your server\";}return urldecode($t);}}Заменить на:function decode_to_utf8($int=0){$t = \'\';if ( $int < 0 ){return chr(0);}else if ( $int <= 0x007f ){$t .= chr($int);}else if ( $int <= 0x07ff ){$t .= chr(0xc0 | ($int >> 6));$t .= chr(0x80 | ($int & 0x003f));}else if ( $int <= 0xffff ){$t .= chr(0xe0 | ($int >> 12));$t .= chr(0x80 | (($int >> 6) & 0x003f));$t .= chr(0x80 | ($int & 0x003f));}else if ( $int <= 0x10ffff ){$t .= chr(0xf0 | ($int >> 18));$t .= chr(0x80 | (($int >> 12) & 0x3f));$t .= chr(0x80 | (($int >> 6) & 0x3f));$t .= chr(0x80 | ($int & 0x3f));}else{ return chr(0);}return $t;}function convert_unicode($t, $to = \'windows-1251\'){$to = strtolower($to);if ($to == \'utf-8\') {$t = preg_replace( \'#%u([0-9A-F]{1,4})#ie\', \"decode_to_utf8(hexdec(\'\\1\'))\", utf8_encode($t) );$t = urldecode ($t);} else {$t = preg_replace( \'#%u([0-9A-F]{1,4})#ie\', \"\'&#\' . hexdec(\'\\1\') . \';\'\", $t );$t = urldecode ($t);$t = @html_entity_decode($t, ENT_NOQUOTES, $to);}return $t;}Скорее всего не поможет, хотя кто знает... по этому только 1ый вариант...