From cb97f8190d15cef9cbecf5be84635bebc93992de Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" Date: Tue, 20 Nov 2001 02:59:55 +0000 Subject: [PATCH] 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. git-svn-id: svn://10.0.0.236/trunk@108542 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/attachment.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/attachment.cgi b/mozilla/webtools/bugzilla/attachment.cgi index 8792b4aec64..d908a5ebd29 100755 --- a/mozilla/webtools/bugzilla/attachment.cgi +++ b/mozilla/webtools/bugzilla/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;