summaryrefslogtreecommitdiffstats
path: root/Bugzilla/CGI.pm
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-11-09 20:55:27 +0100
committerbbaetz%student.usyd.edu.au <>2002-11-09 20:55:27 +0100
commit3afbc09614bfe1fb55d713d9f975b64c839e76ae (patch)
treeab26e6ea6df63a8e812a78b8e2e29403cc45589f /Bugzilla/CGI.pm
parent610c14bb161b740d48d0e1a8d250ee75a222ecd5 (diff)
downloadbugzilla-3afbc09614bfe1fb55d713d9f975b64c839e76ae.tar.gz
bugzilla-3afbc09614bfe1fb55d713d9f975b64c839e76ae.tar.xz
Bug 179174 - renable $| = 1
r=justdave x2 a=justdave
Diffstat (limited to 'Bugzilla/CGI.pm')
-rw-r--r--Bugzilla/CGI.pm3
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|