summaryrefslogtreecommitdiffstats
path: root/post_bug.cgi
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-08-04 01:25:21 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-08-04 01:25:21 +0200
commit96b6cc3cf41f3fc657505d3bb6d2be9b65abe636 (patch)
tree869923a16b91ea167734e8093398e74cabb62f9d /post_bug.cgi
parent5ba1d524f4bab646b54b589db77afd1b23b0b729 (diff)
downloadbugzilla-96b6cc3cf41f3fc657505d3bb6d2be9b65abe636.tar.gz
bugzilla-96b6cc3cf41f3fc657505d3bb6d2be9b65abe636.tar.xz
Bug 584110: Don't name attachment files "attachment.txt" by default, because this confuses IE
a=LpSolit
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-xpost_bug.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi
index 74d26af2b..2c8062605 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -200,7 +200,7 @@ if (defined($cgi->upload('data')) || $cgi->param('attach_text')) {
creation_ts => $timestamp,
data => scalar $cgi->param('attach_text') || $cgi->upload('data'),
description => scalar $cgi->param('description'),
- filename => $cgi->param('attach_text') ? 'attachment.txt' : scalar $cgi->upload('data'),
+ filename => $cgi->param('attach_text') ? "file_$id.txt" : scalar $cgi->upload('data'),
ispatch => scalar $cgi->param('ispatch'),
isprivate => scalar $cgi->param('isprivate'),
mimetype => $content_type,