in reply to Re^3: CGI::Application and CGI pragmas?
in thread CGI::Application and CGI pragmas?

Thanks for helping.
I finally figured it out. The problem is with the

$self->param('log' => Apache->request->server->log);

stuff I was doing. If I

use CGI qw/:standard/

I pull in param() as well as things like h1(). All I needed to do was

qw/:html/

  • Comment on Re^4: CGI::Application and CGI pragmas?