From: terry%netscape.com <> Date: Fri, 25 Sep 1998 04:12:46 +0000 (+0000) Subject: Fixed bug 890. Apparently, Apache has the habit of lower-casing some X-Git-Tag: bugzilla-2.2~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=130e6b50693abc7f8c471acd9370bffcb858fd95;p=thirdparty%2Fbugzilla.git 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. --- diff --git a/buglist.cgi b/buglist.cgi index e93fc3d8d7..9d364b7852 100755 --- a/buglist.cgi +++ b/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";