Commit b2bd185e authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 109240: fixes the regression that changed the way comments regarding…

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.
parent de187d1a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment