]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixed bug 890. Apparently, Apache has the habit of lower-casing some
authorterry%netscape.com <>
Fri, 25 Sep 1998 04:12:46 +0000 (04:12 +0000)
committerterry%netscape.com <>
Fri, 25 Sep 1998 04:12:46 +0000 (04:12 +0000)
of the boundary strings, so we'll just lower-case them all to make
things work.

buglist.cgi

index e93fc3d8d7ff53c9fdeaecc35b0cf72c7f9d940c..9d364b785216d9a3d00317cfbac416baf4c9dc7a 100755 (executable)
@@ -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";