ok I have a quick solution for the issue from my previous post.
PLEASE USE IT IF YOU USE A UTF-8 FORUM
1.make a copy and edit file:
Code:
forum root/includes/vbenterprisetranslator_functions_utils.php
2. in this file find:
PHP Code:
$string = preg_replace('/([\300-\337])([\200-\277])/e',
3. and replace with:
PHP Code:
$string = preg_replace('/([\304-\337])([\200-\277])/e',
4. save a file
5. test it.
It was tested on our test forum on utf-8 engine (message was made by opera and IE) and it works now.