I found a bug in shoutbox.
If your locale set as English, I think no problem.
But, if you change your locale to Chinese, that is a big problem. Some mess code will display in your shoutbox, the reason is line-break format error.
I have solved this problem
replace
parsesmileys($data['shout_message'])
with
parsesmileys(str_replace("<br>", "", $data['shout_message']))
in infusions/shoutbox_panel.php line 80
this change is not only for Chinese Site, but also for English or others, I strongly suggest you modify it.:D
0 replies