ok I can reproduce it on my test forum even this mod is disabled (in another part of forum) so this is a vBET bug. I will move this thread into bug reporting section and solve it!
ok I can reproduce it on my test forum even this mod is disabled (in another part of forum) so this is a vBET bug. I will move this thread into bug reporting section and solve it!
Okay. Thanks.
Just so you know,
It is also happening in the French language.
You can check it out here (check the price at the end):
150 $ PRODUCTION AUSTIN OBO
It translates "Asking price" to "Prix \u200b\u200bde vente". It should be "Prix de vente".
Hello,
I can solve it! Already DONE on your server
1. open, edit and make a copy of this file:
forum root/includes/vbenterprisetranslator_functions.php
2. in this file find:
3. and replace with:PHP Code:
$result =& str_replace('\u003d', '=', str_replace ('\u0026', '&', $result));
4. save and test it.PHP Code:
$result =& str_replace(array('\u003d','\u0026', '\u200b'), array('=', '&', ' '), $result);
Will be included in the next relase!
Last edited by kamilkurczak; 30-03-11 at 23:40.