From: A. Shimono Date: Wed, 20 Jun 2012 22:20:40 +0000 (+0200) Subject: Bug 762785: Attachments are attached to the wrong comment when created by email_in.pl X-Git-Tag: bugzilla-4.2.2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff5ce68630cc5744d77d9fd54be7df7ed7b26950;p=thirdparty%2Fbugzilla.git Bug 762785: Attachments are attached to the wrong comment when created by email_in.pl r/a=LpSolit --- diff --git a/email_in.pl b/email_in.pl index ed4cf9a045..34e57c90cc 100755 --- a/email_in.pl +++ b/email_in.pl @@ -235,7 +235,8 @@ sub process_bug { my $added_comment; if (trim($fields{'comment'})) { - $added_comment = $bug->comments->[-1]; + # The "old" bug object doesn't contain the comment we just added. + $added_comment = Bugzilla::Bug->check($bug_id)->comments->[-1]; } return ($bug, $added_comment); }