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

sakharuk lon-capa-cvs@mail.lon-capa.org
Thu, 25 Apr 2002 21:35:30 -0000


sakharuk		Thu Apr 25 17:35:30 2002 EDT

  Modified files:              
    /loncom/homework	optionresponse.pm 
  Log:
  itemize was changed on enumerate
  
  
Index: loncom/homework/optionresponse.pm
diff -u loncom/homework/optionresponse.pm:1.37 loncom/homework/optionresponse.pm:1.38
--- loncom/homework/optionresponse.pm:1.37	Tue Apr 23 10:16:05 2002
+++ loncom/homework/optionresponse.pm	Thu Apr 25 17:35:30 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # option list style responses
 #
-# $Id: optionresponse.pm,v 1.37 2002/04/23 14:16:05 sakharuk Exp $
+# $Id: optionresponse.pm,v 1.38 2002/04/25 21:35:30 sakharuk Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -140,7 +140,7 @@
       $result.=')">';
     } # else nothing changed so just use the default mechanism
   }
-  if ($target eq 'tex') {$result .= '\begin{itemize}';}
+  if ($target eq 'tex') {$result .= '\begin{enumerate}';}
   return $result;
 }
 
@@ -220,7 +220,7 @@
   } elsif ($target eq 'edit') {
     $result.=&Apache::edit::end_table();
   }  
-  if ($target eq 'tex') {$result .= '\end{itemize}';}
+  if ($target eq 'tex') {$result .= '\end{enumerate}';}
   return $result;
 }