in reply to Problem with header() method when extending CGI.pm

You put $this->SUPER::new() in void context (not assigned to anything).

Replies are listed 'Best First'.
Re: Re: Problem with header() method when extending CGI.pm
by thinker (Parson) on Jan 10, 2002 at 00:25 UTC
    Hi kwoff

    You put $this->SUPER::new() in void context (not assigned to anything).

    Thank you kwoff, I changed the line to  $this=$this->SUPER::new({}); and it works fine. I guess you knew it would :-)

    Thanks

    thinker