--- loncom/interface/lonhtmlcommon.pm 2006/07/07 13:40:16 1.142 +++ loncom/interface/lonhtmlcommon.pm 2006/07/07 19:17:19 1.143 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.142 2006/07/07 13:40:16 albertel Exp $ +# $Id: lonhtmlcommon.pm,v 1.143 2006/07/07 19:17:19 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1399,14 +1399,19 @@ ENDONE } sub row_closure { + my ($no_separator) =@_; my $output = <<"ENDTWO"; +ENDTWO + if (!$no_separator) { + $output .= <<"ENDTWO"; - + ENDTWO + } return $output; }