--- loncom/interface/lonspeller.pm 2005/04/07 06:56:23 1.11 +++ loncom/interface/lonspeller.pm 2006/03/15 19:41:26 1.12 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Interface routines for Aspell # -# $Id: lonspeller.pm,v 1.11 2005/04/07 06:56:23 albertel Exp $ +# $Id: lonspeller.pm,v 1.12 2006/03/15 19:41:26 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -128,13 +128,12 @@ sub handler { &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}); &initspeller(); - my $html=&Apache::lonxml::xmlbegin(); - $r->print($html.''. - &mt('Spell Checker'). - ''. + my $html = &Apache::lonxml::xmlbegin(); + my $head = &Apache::loncommon::head('Spell Checker'); + $r->print($html.$head.''. &Apache::lontexconvert::msgtexconverted( &markeduptext($env{'form.text'})). - ''); + &Apache::loncommon::end_page()); return OK; }