[Help] Encoding of chat( cp1251 ).

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jul 29, 2008
Messages
7
Reaction score
0
help me please to shoot trouble with encoding of chat.
I can't edit him to work correctly with cp1251 :bad:

Can you help me?

I try to edit
Code:
	$nick=htmlentities(utf8_decode($v->user));
	$msg=htmlentities(utf8_decode($v->message));
to
Code:
	$nick=htmlentities($v->user);
	$msg=htmlentities($v->message);
in chat_msg.php, btw there's no correct result.
 
hmmm, if u use htmlentities, you need to change the default charset.

i dunno if u think about that.
 
Status
Not open for further replies.
Back