From 130e6b50693abc7f8c471acd9370bffcb858fd95 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Fri, 25 Sep 1998 04:12:46 +0000 Subject: 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. --- buglist.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index e93fc3d8d..9d364b785 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"; -- cgit v1.2.3-24-g4f1b