--- loncom/xml/lonxml.pm 2010/06/05 19:37:01 1.509 +++ loncom/xml/lonxml.pm 2010/06/06 02:40:40 1.510 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # XML Parser Module # -# $Id: lonxml.pm,v 1.509 2010/06/05 19:37:01 www Exp $ +# $Id: lonxml.pm,v 1.510 2010/06/06 02:40:40 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1464,7 +1464,7 @@ sub renderingoptions { &Apache::loncommon::select_form( $env{'form.languages'}, 'languages', - &Apache::lonlocal::texthash(%langchoices)). + {&Apache::lonlocal::texthash(%langchoices)}). ''; } $output .= @@ -1473,11 +1473,11 @@ sub renderingoptions { &Apache::loncommon::select_form( $env{'form.texengine'}, 'texengine', - &Apache::lonlocal::texthash + {&Apache::lonlocal::texthash ('' => '', 'tth' => 'tth (TeX to HTML)', 'jsMath' => 'jsMath', - 'mimetex' => 'mimetex (Convert to Images)')). + 'mimetex' => 'mimetex (Convert to Images)')}). ''; return $output; }