diff options
author | Sebastin Santy <sebastinssanty@gmail.com> | 2017-08-16 06:01:44 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-08-16 06:01:44 +0200 |
commit | 0f06e232470fe9ba5400f72b725d7e685468e1b0 (patch) | |
tree | 8bdd94a85a6fb5b164ac203605c1fe50aceb6954 /new_bug.cgi | |
parent | 1a35dbbc73f74efa955227a04acf74c465bd1e49 (diff) | |
download | bugzilla-0f06e232470fe9ba5400f72b725d7e685468e1b0.tar.gz bugzilla-0f06e232470fe9ba5400f72b725d7e685468e1b0.tar.xz |
Bug 1390112 - Option for filing security bugs
Diffstat (limited to 'new_bug.cgi')
-rw-r--r-- | new_bug.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/new_bug.cgi b/new_bug.cgi index 6a62d0dcb..6a49e0b68 100644 --- a/new_bug.cgi +++ b/new_bug.cgi @@ -57,12 +57,13 @@ if (lc($cgi->request_method) eq 'post') { my $token = $cgi->param('token'); check_hash_token($token, ['new_bug']); my @keywords = $cgi->param('keywords'); + my @groups = $cgi->param('groups'); my $new_bug = Bugzilla::Bug->create({ short_desc => scalar($cgi->param('short_desc')), product => scalar($cgi->param('product')), component => scalar($cgi->param('component')), bug_severity => 'normal', - groups => [], + groups => \@groups, op_sys => 'Unspecified', rep_platform => 'Unspecified', version => scalar( $cgi->param('version')), |