From: myk%mozilla.org <> Date: Tue, 20 Nov 2001 10:59:55 +0000 (+0000) Subject: Fix for bug 109240: fixes the regression that changed the way comments regarding... X-Git-Tag: bugzilla-2.16rc1~316 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2bd185ee6b0b796c31d7c3192a166149004881c;p=thirdparty%2Fbugzilla.git Fix for bug 109240: fixes the regression that changed the way comments regarding attachment creation are formatted. Patch by Jake . r=myk@mozilla.org, no second review needed. --- diff --git a/attachment.cgi b/attachment.cgi index 8792b4aec6..d908a5ebd2 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;