From ff5ce68630cc5744d77d9fd54be7df7ed7b26950 Mon Sep 17 00:00:00 2001 From: "A. Shimono" Date: Thu, 21 Jun 2012 00:20:40 +0200 Subject: Bug 762785: Attachments are attached to the wrong comment when created by email_in.pl r/a=LpSolit --- email_in.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'email_in.pl') diff --git a/email_in.pl b/email_in.pl index ed4cf9a04..34e57c90c 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); } -- cgit v1.2.3-24-g4f1b