Index: openacs-4/packages/chat/www/ajax/chat.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/chat/www/ajax/Attic/chat.tcl,v diff -u -N -r1.6 -r1.7 --- openacs-4/packages/chat/www/ajax/chat.tcl 22 Jun 2018 10:49:52 -0000 1.6 +++ openacs-4/packages/chat/www/ajax/chat.tcl 18 Sep 2018 14:44:42 -0000 1.7 @@ -18,7 +18,7 @@ } set message_output "" -set user_output "-" +set user_output "" ::chat::Chat c1 -volatile -chat_id $id -session_id $s @@ -42,30 +42,10 @@ } } -set output " - - -" - +set output "" if { $message_output ne "" } { - append output "
$message_output
\n" + append output "
$message_output
" } - -if { $user_output ne "-" } { - append output "$user_output
\n" +if { $user_output ne "" } { + append output "$user_output
" } - -append output " - -" - -ns_return 200 text/html $output