--- loncom/interface/lonmsgdisplay.pm 2010/01/30 22:28:20 1.124.4.8 +++ loncom/interface/lonmsgdisplay.pm 2010/02/15 03:37:59 1.124.4.9 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Routines for messaging display # -# $Id: lonmsgdisplay.pm,v 1.124.4.8 2010/01/30 22:28:20 raeburn Exp $ +# $Id: lonmsgdisplay.pm,v 1.124.4.9 2010/02/15 03:37:59 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1838,7 +1838,9 @@ sub disfacetoface { foreach my $key (sort(keys(%records))) { my %content=&Apache::lonmsg::unpackagemsg($records{$key}); next if ($content{'senderdomain'} eq ''); - &Apache::lonfeedback::newline_to_br(\$content{'message'}); + if (!&Apache::lonfeedback::contains_block_html($content{'message'})) { + &Apache::lonfeedback::newline_to_br(\$content{'message'}); + } if ($content{'subject'}=~/^Record/) { $result.='

'.&mt('Record').'

'; } elsif ($content{'subject'}=~/^Broadcast/) {