diff options
Diffstat (limited to 'Bugzilla/CGI.pm')
-rw-r--r-- | Bugzilla/CGI.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index dd6061346..51c263472 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -36,7 +36,6 @@ BEGIN { use CGI qw(-no_xhtml -oldstyle_urls :private_tempfiles :unique_headers SERVER_PUSH); use base qw(CGI); -use CGI::Carp qw(fatalsToBrowser); use Bugzilla::Error; use Bugzilla::Util; @@ -62,6 +61,11 @@ sub new { my $self = $class->SUPER::new(@args); + # This happens here so that command-line scripts don't spit out + # their errors in HTML format. + require CGI::Carp; + import CGI::Carp qw(fatalsToBrowser); + # Make sure our outgoing cookie list is empty on each invocation $self->{Bugzilla_cookie_list} = []; |