From: moodler Date: Wed, 4 Oct 2006 12:58:09 +0000 (+0000) Subject: Committed a fix for streaming chat from Dan Polawski, MDL-6791 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=57bdc37ddb339ed4811e68cd517db4e396280c74;p=moodle.git Committed a fix for streaming chat from Dan Polawski, MDL-6791 Seems to help! --- diff --git a/mod/chat/gui_header_js/insert.php b/mod/chat/gui_header_js/insert.php index 77e127c8a7..799d6842c7 100644 --- a/mod/chat/gui_header_js/insert.php +++ b/mod/chat/gui_header_js/insert.php @@ -58,7 +58,11 @@ if ($chatuser->version == 'header_js') { /// force msg referesh ASAP - echo ''; + if ($CFG->chat_normal_updatemode == 'jsupdated') { // See bug MDL-6791 + echo ''; + } else { + echo ''; + } } redirect('../empty.php');