From b7913bd532fea7ebdbe44b2de2a48543f95e7771 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. git-svn-id: svn://10.0.0.236/trunk@10954 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/buglist.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/webtools/bugzilla/buglist.cgi b/mozilla/webtools/bugzilla/buglist.cgi index e93fc3d8d7f..9d364b78521 100755 --- a/mozilla/webtools/bugzilla/buglist.cgi +++ b/mozilla/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";