in reply to Re: best way to handle Subroutine redefined warning
in thread best way to handle Subroutine redefined warning

How does that solve the problem?

  • Comment on Re^2: best way to handle Subroutine redefined warning

Replies are listed 'Best First'.
Re^3: best way to handle Subroutine redefined warning
by Anonymous Monk on Aug 30, 2012 at 17:00 UTC
    If you don't want the redirect that's in CGI.pm, just don't import it. change
    use CGI qw/:standard/;
    to
    use CGI qw/:standard !redirect/;