--- loncom/interface/loncommon.pm 2004/08/26 21:42:40 1.208 +++ loncom/interface/loncommon.pm 2004/08/26 22:41:33 1.209 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.208 2004/08/26 21:42:40 matthew Exp $ +# $Id: loncommon.pm,v 1.209 2004/08/26 22:41:33 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -812,7 +812,7 @@ format. sub csv_translate { my $text = shift; $text =~ s/\"/\"\"/g; - $text =~ s/\n//g; + $text =~ s/\n/ /g; return $text; }