]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 179174 - renable $| = 1
authorbbaetz%student.usyd.edu.au <>
Sat, 9 Nov 2002 19:55:27 +0000 (19:55 +0000)
committerbbaetz%student.usyd.edu.au <>
Sat, 9 Nov 2002 19:55:27 +0000 (19:55 +0000)
r=justdave x2
a=justdave

Bugzilla/CGI.pm

index 6a9730bc6b72e10c6c8bd7a104798b24b79cbf91..ae0546c2ec25a60fbd839caefdf741ace87c12af 100644 (file)
@@ -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|