From 233ca8bf603fd76993298cb21bb453e577e019ef Mon Sep 17 00:00:00 2001 From: defacer Date: Sun, 3 Oct 2004 16:40:20 +0000 Subject: [PATCH] Undoing an incorrect instance of htmlentity encoding a &. Probably got in with all the XHTML frenzy. Thanks to Daryl for helping to debug this! :-) --- mod/chat/chatd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/chat/chatd.php b/mod/chat/chatd.php index bddda6c73d..8ea2ee623d 100755 --- a/mod/chat/chatd.php +++ b/mod/chat/chatd.php @@ -366,7 +366,7 @@ class ChatDaemon { // The refresh value is 2 seconds higher than the configuration variable because we are doing JS refreshes all the time. // However, if the JS doesn't work for some reason, we still want to refresh once in a while. $header .= "Refresh: ".(intval($CFG->chat_refresh_userlist) + 2)."; url=http://$CFG->chat_serverhost:$CFG->chat_serverport/?win=users&". - "chat_sid=".$sessionid."&groupid=".$this->sets_info[$sessionid]['groupid']."\n"; + "chat_sid=".$sessionid."&groupid=".$this->sets_info[$sessionid]['groupid']."\n"; $header .= "\n"; // That's enough headers for one lousy dummy response -- 2.39.5