[LON-CAPA-cvs] cvs: loncom /xml lontexconvert.pm

albertel lon-capa-cvs@mail.lon-capa.org
Fri, 25 Feb 2005 19:33:26 -0000


albertel		Fri Feb 25 14:33:26 2005 EDT

  Modified files:              
    /loncom/xml	lontexconvert.pm 
  Log:
  - removing some debugs, and getting it to stop complaining
  
  
Index: loncom/xml/lontexconvert.pm
diff -u loncom/xml/lontexconvert.pm:1.59 loncom/xml/lontexconvert.pm:1.60
--- loncom/xml/lontexconvert.pm:1.59	Fri Feb 25 00:54:01 2005
+++ loncom/xml/lontexconvert.pm	Fri Feb 25 14:33:26 2005
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # TeX Conversion Module
 #
-# $Id: lontexconvert.pm,v 1.59 2005/02/25 05:54:01 albertel Exp $
+# $Id: lontexconvert.pm,v 1.60 2005/02/25 19:33:26 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -149,10 +149,8 @@
 	#has a $$ in it, guessinng it's display mode
 	$tag='div';
     }
-    &Apache::lonnet::logthis($$texstring);
     $$texstring=~s/(?!\\)\$//g;
-    $$texstring=~s/\\ensuremath//g
-    &Apache::lonnet::logthis($$texstring);
+    $$texstring=~s/\\ensuremath//g;
     return '<'.$tag.' class="math">'.$$texstring.'</'.$tag.'>';
 }