--- loncom/homework/structuretags.pm 2003/06/13 14:01:26 1.183 +++ loncom/homework/structuretags.pm 2003/06/13 14:35:24 1.184 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.183 2003/06/13 14:01:26 albertel Exp $ +# $Id: structuretags.pm,v 1.184 2003/06/13 14:35:24 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -266,12 +266,14 @@ ENDCHECKOUT sub start_problem { my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_; - $Apache::lonhomework::parsing_a_problem=1; - if ( $Apache::inputtags::part ne '' ) { - &Apache::lonxml::error('Only one problem allowed in a .problem file'); - my $bodytext=&Apache::lonxml::get_all_text("/problem",$parser); + if ( $Apache::inputtags::part ne '' || + $Apache::lonhomework::parsing_a_problem) { + &Apache::lonxml::error('Only one <problem> allowed in a .problem file'); + #my $bodytext=&Apache::lonxml::get_all_text("/problem",$parser); return ''; } + + $Apache::lonhomework::parsing_a_problem=1; #initialize globals $Apache::inputtags::part='0'; @Apache::inputtags::partlist=('0');