[LON-CAPA-cvs] cvs: loncom /homework structuretags.pm

albertel lon-capa-cvs@mail.lon-capa.org
Fri, 08 Feb 2002 20:58:39 -0000


albertel		Fri Feb  8 15:58:39 2002 EDT

  Modified files:              
    /loncom/homework	structuretags.pm 
  Log:
  - lonpublisher needs to call things correctly.
  
  
Index: loncom/homework/structuretags.pm
diff -u loncom/homework/structuretags.pm:1.80 loncom/homework/structuretags.pm:1.81
--- loncom/homework/structuretags.pm:1.80	Wed Feb  6 11:18:54 2002
+++ loncom/homework/structuretags.pm	Fri Feb  8 15:58:39 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA 
 # definition of tags that give a structure to a document
 #
-# $Id: structuretags.pm,v 1.80 2002/02/06 16:18:54 albertel Exp $
+# $Id: structuretags.pm,v 1.81 2002/02/08 20:58:39 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -162,7 +162,10 @@
 sub start_problem {
   my ($target,$token,$tagstack,$parstack,$parser,$safeeval)=@_;
 
-  if ( $Apache::inputtags::part ne '' ) {
+  # meta is called from lonpublisher, which doesn't uses the normal
+  # lonhomework method of parsing the file which means that inputtags 
+  # won't get reset
+  if ( $Apache::inputtags::part ne '' && $target != 'meta' ) {
     &Apache::lonxml::error('Only one problem allowed in a .problem file');
     my $bodytext=&Apache::lonxml::get_all_text("/problem",$$parser[-1]);
     return '';