Quote:
Originally Posted by Gierade
Unfortunately, this trick on my forum does not work. After updating the SB, there was a problem with the encoding of Polish characters. Previously, everything was OK. Any suggestions?
|
DragonByte have reason to be carefully with the change of Encoding.... try with this:
File: /dbtech/vbshout/includes/class_core.php line 1879 (aprox) find
PHP Code:
$shouts_r['message'] = str_replace(array("\r", "\n", "\r\n"), '', $shouts_r['message']);
repleca with:
PHP Code:
$shouts_r['message'] = utf8_encode(str_replace(array("\r", "\n", "\r\n"), '', $shouts_r['message']));
that encode the message to UTF when use AJAX