diff options
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| |