--- loncom/interface/lonerrorhandler.pm 2006/03/21 18:33:39 1.10 +++ loncom/interface/lonerrorhandler.pm 2006/04/13 19:07:11 1.11 @@ -1,7 +1,7 @@ # The LearningOnline Network # Internal Server Error Handler # -# $Id: lonerrorhandler.pm,v 1.10 2006/03/21 18:33:39 albertel Exp $ +# $Id: lonerrorhandler.pm,v 1.11 2006/04/13 19:07:11 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -30,9 +30,10 @@ package Apache::lonerrorhandler; use strict; use Apache::Constants qw(:common); -use Apache::loncommon; +use Apache::loncommon(); use Apache::lonnet; -use Apache::lonmsg; +use Apache::lonmsg(); +use Apache::lonacc(); sub handler { my $r = shift; @@ -40,7 +41,7 @@ sub handler { $r->send_http_header; return OK if $r->header_only; - &Apache::loncommon::get_posted_cgi($r); + &Apache::lonacc::get_posted_cgi($r); my $title = $env{'form.sendinfo'} ? 'Sending Error Report' : 'Could Not Process Request';