From: bbaetz%student.usyd.edu.au <> Date: Sat, 9 Nov 2002 19:55:27 +0000 (+0000) Subject: Bug 179174 - renable $| = 1 X-Git-Tag: bugzilla-2.17.2~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3afbc09614bfe1fb55d713d9f975b64c839e76ae;p=thirdparty%2Fbugzilla.git Bug 179174 - renable $| = 1 r=justdave x2 a=justdave --- diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 6a9730bc6b..ae0546c2ec 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|