Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
90407fca
Commit
90407fca
authored
Jul 26, 2006
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 300978: bad output when a non-cgi script dies
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
parent
9334d6db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
Bug.pm
Bugzilla/Bug.pm
+0
-2
CGI.pm
Bugzilla/CGI.pm
+5
-1
No files found.
Bugzilla/Bug.pm
View file @
90407fca
...
...
@@ -30,8 +30,6 @@ package Bugzilla::Bug;
use
strict
;
use
CGI::
Carp
qw(fatalsToBrowser)
;
use
Bugzilla::
Attachment
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Field
;
...
...
Bugzilla/CGI.pm
View file @
90407fca
...
...
@@ -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
}
=
[]
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment