diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-03-21 11:58:45 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-03-21 11:58:45 +0100 |
commit | 1327ff9a6a65b31d9cad315a968b6d3bdab54b89 (patch) | |
tree | fb0529638e074a0049f7de9b05a0239160bdb38c /Bugzilla/WebService | |
parent | e477b10a327c55ab88f8edb5991a1214670716b1 (diff) | |
download | bugzilla-1327ff9a6a65b31d9cad315a968b6d3bdab54b89.tar.gz bugzilla-1327ff9a6a65b31d9cad315a968b6d3bdab54b89.tar.xz |
Bug 294021: Allow requestees to set attachment flags even if they don't have editbugs privs
r=gerv a=justdave
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 09f6e1adc..3af8169b4 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -852,7 +852,7 @@ sub update_attachment { || ThrowUserError("invalid_attach_id", { attach_id => $id }); my $bug = $attachment->bug; $attachment->_check_bug; - $attachment->validate_can_edit($bug->product_id) + $attachment->validate_can_edit || ThrowUserError("illegal_attachment_edit", { attach_id => $id }); push @attachments, $attachment; |