Quote:
Originally Posted by milaszewski
ISO-8852-2 is latin
|
My fault. To be clear: German and English vBulletins use ISO-8859-1 (
Latin alphabet No. 1), but your polish version ISO-8852-2 (
Latin alphabet No. 2)...
Have a look at
ACP > Language Manger > Edit Settings > HTML Character Set German and English will show ISO-8859-1, but Polish ISO-8859-2
I think, this affects only the Language Pack. vBulletin itself should be the same.
Back to the code: bepe uses
Code:
iconv( "UTF-8", $vbulletin->userinfo['lang_charset']
which should convert the right way, but obviously doesn't...
Perhaps also a problem with
Code:
// Check an additional blacklist of troublemaker characters.
// Should these be merged into the title char list?
$unicodeBlacklist = '/[' .
'\x{0080}-\x{009f}' . # iso-8859-1 control chars
'\x{00a0}' . # non-breaking space
'\x{2000}-\x{200f}' . # various whitespace
'\x{2028}-\x{202f}' . # breaks and control chars
'\x{3000}' . # ideographic space
'\x{e000}-\x{f8ff}' . # private use
']/u';
Well... but we cannot cover bepe with issues and issues as long it is a one man show...