--- loncom/xml/lontexconvert.pm 2003/03/17 16:52:28 1.15.2.1 +++ loncom/xml/lontexconvert.pm 2003/02/14 19:35:55 1.16 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # TeX Conversion Module # -# $Id: lontexconvert.pm,v 1.15.2.1 2003/03/17 16:52:28 albertel Exp $ +# $Id: lontexconvert.pm,v 1.16 2003/02/14 19:35:55 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -46,6 +46,7 @@ use tth; use vars qw($errorstring); use Apache::lonmsg; use Apache::lonxml; +use Apache::lonmenu; # ====================================================================== Header @@ -70,7 +71,7 @@ sub header { return &Apache::lonxml::xmlbegin(). &Apache::lonxml::fontsettings(). "\n\n". - &Apache::lonxml::registerurl(undef,'tex'). + &Apache::lonmenu::registerurl(undef,'tex'). "\n\n"; } @@ -116,7 +117,6 @@ sub footer { sub to_convert { my ($string) = @_; $string=~s/\/ /g; - $string=&HTML::Entities::decode($string); return &converted(\$string); }