From 7ce9b17e54a32c62d92f0c5bf2101f5451a1560c Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Thu, 22 Apr 2010 11:08:39 -0700 Subject: Bug 539865: Make Bugzilla::Object pass $params to validators during create() (implement VALIDATOR_DEPENDENCIES) r=LpSolit, 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 38ff17cc5..8e2c00053 100755 --- a/email_in.pl +++ b/email_in.pl @@ -243,7 +243,8 @@ sub handle_attachments { # and this is our first attachment, then we make the comment an # "attachment created" comment. if ($comment and !$comment->type and !$update_comment) { - $comment->set_type(CMT_ATTACHMENT_CREATED, $obj->id); + $comment->set_all({ type => CMT_ATTACHMENT_CREATED, + extra_data => $obj->id }); $update_comment = 1; } else { -- cgit v1.2.3-24-g4f1b