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.1.2.6 -r1.1.2.7 --- openacs-4/packages/chat/www/ajax/chat.tcl 11 Apr 2006 11:29:46 -0000 1.1.2.6 +++ openacs-4/packages/chat/www/ajax/chat.tcl 13 Jun 2006 00:32:45 -0000 1.1.2.7 @@ -18,10 +18,11 @@ switch -- $m { add_msg { + # i see no reason, why this is limited to 200 characters.... GN # do not allow messages longer than 200 characters - if { [string length $msg] > 200 } { - set msg [string range $msg 0 200] - } + #if { [string length $msg] > 200 } { + # set msg [string range $msg 0 200] + #} # do not insert empty messages, if they managed to get here if { $msg ne "" } { set message_output [c1 add_msg $msg]