From: defacer Date: Sun, 3 Oct 2004 16:40:20 +0000 (+0000) Subject: Undoing an incorrect instance of htmlentity encoding a &. Probably got in X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=233ca8bf603fd76993298cb21bb453e577e019ef;p=moodle.git Undoing an incorrect instance of htmlentity encoding a &. Probably got in with all the XHTML frenzy. Thanks to Daryl for helping to debug this! :-) --- 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