From c18ad857eef44bee4d6e8682ab88fb9dd0f4f0ba Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" Date: Thu, 24 Sep 1998 21:12:46 +0000 Subject: [PATCH] Fixed bug 890. Apparently, Apache has the habit of lower-casing some of the boundary strings, so we'll just lower-case them all to make things work. --- webtools/bugzilla/buglist.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webtools/bugzilla/buglist.cgi b/webtools/bugzilla/buglist.cgi index e93fc3d8d7ff..9d364b785216 100755 --- a/webtools/bugzilla/buglist.cgi +++ b/webtools/bugzilla/buglist.cgi @@ -22,9 +22,9 @@ use diagnostics; use strict; -print "Content-type: multipart/x-mixed-replace;boundary=ThisRandomString\n"; +print "Content-type: multipart/x-mixed-replace;boundary=thisrandomstring\n"; print "\n"; -print "--ThisRandomString\n"; +print "--thisrandomstring\n"; require "CGI.pl"; @@ -392,7 +392,7 @@ my $buglist = join(":", @bugarray); print "\n"; -print "--ThisRandomString\n"; +print "--thisrandomstring\n"; my $toolong = 0; @@ -594,4 +594,4 @@ if ($count > 0) { print "Make changes to several of these bugs at once.\n"; } } -print "\n--ThisRandomString--\n"; +print "\n--thisrandomstring--\n";