summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-02-25 23:06:33 +0100
committerjocuri%softhome.net <>2004-02-25 23:06:33 +0100
commit3f5f2ce70463b56d5e85ea0982ce1ef2196f56d8 (patch)
treee2c7453e93d4054e6305f805a76b229029730b7a /Bugzilla
parent7883861f7dc34a6cd5483cff72a6774f2deb45ed (diff)
downloadbugzilla-3f5f2ce70463b56d5e85ea0982ce1ef2196f56d8.tar.gz
bugzilla-3f5f2ce70463b56d5e85ea0982ce1ef2196f56d8.tar.xz
Tree bustage fix: eliminates the tabs that have been introduced while checking in the patch for bug 226251.
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/CGI.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm
index 763f418e9..40c160b83 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;
}