diff options
author | Byron Jones <bjones@mozilla.com> | 2013-07-18 09:07:57 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-07-18 09:07:57 +0200 |
commit | cc20ecfa1b8c151690e8d12c8ad5c544fa1a4a5a (patch) | |
tree | 3202a2614139d143131fa5b900a928ec64ce6be3 /post_bug.cgi | |
parent | 1551a42f3337482bd6aaa1493d987e05d704f128 (diff) | |
download | bugzilla-cc20ecfa1b8c151690e8d12c8ad5c544fa1a4a5a.tar.gz bugzilla-cc20ecfa1b8c151690e8d12c8ad5c544fa1a4a5a.tar.xz |
Bug 804708: Add a 'Review' extension to customise the review flag for Mozilla's workflow (make requestee/reviewer mandatory, provide review suggestions, etc)
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index af8c2cd2e..839751b58 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -201,6 +201,7 @@ if (defined($cgi->upload('data')) || $cgi->param('attach_text')) { if ($attachment) { # Set attachment flags. + Bugzilla::Hook::process('post_bug_attachment_flags', { bug => $bug }); my ($flags, $new_flags) = Bugzilla::Flag->extract_flags_from_cgi( $bug, $attachment, $vars, SKIP_REQUESTEE_ON_ERROR); $attachment->set_flags($flags, $new_flags); |