in reply to CGI::Application, $self->param() doesn't return

The param method from CGI::Application does not return CGI parameters but properties of the instance. What you need to do is get the query object first and then get the CGI parameters from that:

my $self = shift; my $cgi = $self->query(); my $subj = $cgi->param( 'subject' );

-derby

Replies are listed 'Best First'.
Re^2: CGI::Application, $self->param() doesn't return
by flamey (Scribe) on Sep 14, 2009 at 14:45 UTC
    Thanks, that was it!