summaryrefslogtreecommitdiffstats
path: root/attachment.cgi
diff options
context:
space:
mode:
authormyk%mozilla.org <>2001-11-20 11:59:55 +0100
committermyk%mozilla.org <>2001-11-20 11:59:55 +0100
commitb2bd185ee6b0b796c31d7c3192a166149004881c (patch)
treecb6dbe3b0feb86d7173193d60bc56baa2c4a1426 /attachment.cgi
parentde187d1ab64a77ffe85a08d5c6009fa71172b74c (diff)
downloadbugzilla-b2bd185ee6b0b796c31d7c3192a166149004881c.tar.gz
bugzilla-b2bd185ee6b0b796c31d7c3192a166149004881c.tar.xz
Fix for bug 109240: fixes the regression that changed the way comments regarding attachment creation are formatted.
Patch by Jake <jake@acutex.net>. r=myk@mozilla.org, no second review needed.
Diffstat (limited to 'attachment.cgi')
-rwxr-xr-xattachment.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/attachment.cgi b/attachment.cgi
index 8792b4aec..d908a5ebd 100755
--- a/attachment.cgi
+++ b/attachment.cgi
@@ -485,7 +485,7 @@ sub insert
my $attachid = FetchOneColumn();
# Insert a comment about the new attachment into the database.
- my $comment = "Created an attachment (id=$attachid): $::FORM{'description'}\n";
+ my $comment = "Created an attachment (id=$attachid)\n$::FORM{'description'}\n";
$comment .= ("\n" . $::FORM{'comment'}) if $::FORM{'comment'};
use Text::Wrap;