diff options
author | bbaetz%student.usyd.edu.au <> | 2002-11-09 20:55:27 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-11-09 20:55:27 +0100 |
commit | 3afbc09614bfe1fb55d713d9f975b64c839e76ae (patch) | |
tree | ab26e6ea6df63a8e812a78b8e2e29403cc45589f /Bugzilla | |
parent | 610c14bb161b740d48d0e1a8d250ee75a222ecd5 (diff) | |
download | bugzilla-3afbc09614bfe1fb55d713d9f975b64c839e76ae.tar.gz bugzilla-3afbc09614bfe1fb55d713d9f975b64c839e76ae.tar.xz |
Bug 179174 - renable $| = 1
r=justdave x2
a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/CGI.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 6a9730bc6..ae0546c2e 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -29,6 +29,9 @@ use base qw(CGI); use Bugzilla::Util; +# We need to disable output buffering - see bug 179174 +$| = 1; + # CGI.pm uses AUTOLOAD, but explicitly defines a DESTROY sub. # We need to do so, too, otherwise perl dies when the object is destroyed # and we don't have a DESTROY method (because CGI.pm's AUTOLOAD will |die| |