Commit 130e6b50 authored by terry%netscape.com's avatar terry%netscape.com

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.
parent 1d349dc7
...@@ -22,9 +22,9 @@ ...@@ -22,9 +22,9 @@
use diagnostics; use diagnostics;
use strict; 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 "\n";
print "--ThisRandomString\n"; print "--thisrandomstring\n";
require "CGI.pl"; require "CGI.pl";
...@@ -392,7 +392,7 @@ my $buglist = join(":", @bugarray); ...@@ -392,7 +392,7 @@ my $buglist = join(":", @bugarray);
print "\n"; print "\n";
print "--ThisRandomString\n"; print "--thisrandomstring\n";
my $toolong = 0; my $toolong = 0;
...@@ -594,4 +594,4 @@ if ($count > 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 "<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";
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment