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
This commit is contained in:
terry%netscape.com
1998-09-24 21:12:46 +00:00
parent a2b4be9279
commit b7913bd532

View File

@@ -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 "<A HREF=\"buglist.cgi?$fields&tweak=1\">Make changes to several of these bugs at once.</A>\n";
}
}
print "\n--ThisRandomString--\n";
print "\n--thisrandomstring--\n";