Quote:
Originally Posted by filt
|
This function can only convert string from ISO-8859-1, I intended to use mbstring library or iconv
Quote:
Originally Posted by RadioErewan
iconv works for me, just tested it on hook_threadratedata_postsave.php
Added $message = iconv('ISO-8859-2','UTF-8',$message); in line 51 and
$notification = iconv('ISO-8859-2','UTF-8',$notification); in 80.
Now rating is properly rendered. Remember, my forum runs ISO-8859-2.
There are 32 hooks only, so doing it on my own every release is not wise solution.
Will wait for author feedback.
Regards
|
Hi,
If you are a coder and open fbb/functions.php you will find out a function named "fb_encoding_to_Facebook" I intended to use to convert encoding. Hmm, but it give the wrong result so for most of the functions, I commented out the encoding part. But as you confirmed that iconv works, I will provide you with a new functions.php soon. You test it and tell me the result, okie?
Regards,
PS: Yeah, 42 hooks with manual editing is definitely not a wise way to do this

Let the developer (me, haha) do his work!