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

sakharuk lon-capa-cvs@mail.lon-capa.org
Thu, 21 Aug 2003 17:33:22 -0000


sakharuk		Thu Aug 21 13:33:22 2003 EDT

  Modified files:              
    /loncom/homework/caparesponse	caparesponse.pm 
  Log:
  Bug 2054 (Printing in string response has \textbf{Case Insensitive} ..) is fixed. \textbf{} is removed from this module. You can not use this commant because latter on in response.pm it appears inside \verb|| and simply do not work properly.
  
  
Index: loncom/homework/caparesponse/caparesponse.pm
diff -u loncom/homework/caparesponse/caparesponse.pm:1.107 loncom/homework/caparesponse/caparesponse.pm:1.108
--- loncom/homework/caparesponse/caparesponse.pm:1.107	Mon Jul 28 14:29:05 2003
+++ loncom/homework/caparesponse/caparesponse.pm	Thu Aug 21 13:33:22 2003
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # caparesponse definition
 #
-# $Id: caparesponse.pm,v 1.107 2003/07/28 18:29:05 sakharuk Exp $
+# $Id: caparesponse.pm,v 1.108 2003/08/21 17:33:22 sakharuk Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -366,7 +366,7 @@
 	    if ($target eq 'answer') {
 		if ($ENV{'form.answer_output_mode'} eq 'tex') {
 		    $result.=&Apache::response::answer_part($$tagstack[-1],
-							  "\\textbf{$string}");
+							  "$string");
 		} else {
 		    $result.=&Apache::response::answer_part($$tagstack[-1],
 							    "<b>$string</b>");