--- loncom/homework/structuretags.pm 2002/03/29 18:32:46 1.87 +++ loncom/homework/structuretags.pm 2002/04/10 19:58:19 1.89 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.87 2002/03/29 18:32:46 albertel Exp $ +# $Id: structuretags.pm,v 1.89 2002/04/10 19:58:19 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -338,12 +338,19 @@ sub end_problem { } elsif ($target eq 'meta') { if ($Apache::inputtags::part eq '0') { $result=&Apache::response::mandatory_part_meta; + } else { + # there were intervening parts need to set the global temporarily + # and only need the package reference + my $temp=$Apache::inputtags::part; + $Apache::inputtags::part=0; + $result=&Apache::response::meta_package_write('part'); + $Apache::inputtags::part=$temp; } } elsif ($target eq 'edit') { &Apache::lonxml::debug("in end_problem with $target, edit"); $result='
'; } elsif ($target eq 'tex') { - $result .= '\noindent\makebox[9.0cm][b]{\hrulefill}\end{document}'; + $result .= '\vskip 0.5mm\noindent\makebox[9.0cm][b]{\hrulefill}\end{document}'; } return $result; }