diff options
author | terry%netscape.com <> | 1998-09-25 06:12:46 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-09-25 06:12:46 +0200 |
commit | 130e6b50693abc7f8c471acd9370bffcb858fd95 (patch) | |
tree | 00acb730f668389be19060ad8293f396ac3b64c5 /buglist.cgi | |
parent | 1d349dc730fa0514dbf0c04c7c4352a99fecd95d (diff) | |
download | bugzilla-130e6b50693abc7f8c471acd9370bffcb858fd95.tar.gz bugzilla-130e6b50693abc7f8c471acd9370bffcb858fd95.tar.xz |
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.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
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 "<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"; |