From: jocuri%softhome.net <> Date: Wed, 25 Feb 2004 22:06:33 +0000 (+0000) Subject: Tree bustage fix: eliminates the tabs that have been introduced while checking in... X-Git-Tag: bugzilla-2.17.7~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f5f2ce70463b56d5e85ea0982ce1ef2196f56d8;p=thirdparty%2Fbugzilla.git Tree bustage fix: eliminates the tabs that have been introduced while checking in the patch for bug 226251. --- diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 763f418e9f..40c160b836 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -122,9 +122,9 @@ sub multipart_init { $self->{'final_separator'} = "\r\n--$boundary--\r\n"; my $type = SERVER_PUSH($boundary); return $self->header( - -nph => 0, - -type => $type, - (map { split "=", $_, 2 } @other), + -nph => 0, + -type => $type, + (map { split "=", $_, 2 } @other), ) . "WARNING: YOUR BROWSER DOESN'T SUPPORT THIS SERVER-PUSH TECHNOLOGY." . $self->multipart_end; }