Topic: bug
Russian capital letter "ê" disappears
http://punbb.org/forums/viewtopic.php?pid=32176#p32176
Sorry for my bad english
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 bug reports → bug
Russian capital letter "ê" disappears
http://punbb.org/forums/viewtopic.php?pid=32176#p32176
Sorry for my bad english
Does it "disappear" in these forum as well or just in your own forums?
Here and on my forum htttp: // kag.sc.ru/f/
Does this help?
No . It has not helped
Are you the only one you know of who has this problem or is it the same in all russian forums?
I do not know! It is a problem is on this forum and on mine.
This the problem was absent in version 1.1.x
Open up include/functions.php, look up the function called pun_trim and replace it with this:
function pun_trim($str)
{
global $lang_common;
if (strpos($lang_common['lang_encoding'], '8859') !== false)
{
$fishy_chars = array(chr(0x81), chr(0x8D), chr(0x8F), chr(0x90), chr(0x9D), chr(0xA0), chr(0xCA));
return trim(str_replace($fishy_chars, ' ', $str));
}
else
return trim($str);
}
Please note that posts made before this change will still be broken.
Big thank!
I'm guessing it helped?
Yes! Has helped!
Ok, great.
PunBB Forums → PunBB 1.2 bug reports → bug
Powered by PunBB, supported by Informer Technologies, Inc.