summaryrefslogtreecommitdiffstats
path: root/new_bug.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'new_bug.cgi')
-rw-r--r--new_bug.cgi10
1 files changed, 2 insertions, 8 deletions
diff --git a/new_bug.cgi b/new_bug.cgi
index 4429717c1..0949f3696 100644
--- a/new_bug.cgi
+++ b/new_bug.cgi
@@ -47,19 +47,13 @@ my $template = Bugzilla->template;
my $vars = {};
my $dbh = Bugzilla->dbh;
-
-unless ($user->in_group('new-bug-testers')) {
- print $cgi->redirect(correct_urlbase());
- exit;
-}
-
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 @cc = split /, /, $cgi->param('cc');
- my @bug_mentor = split /, /, $cgi->param('bug_mentor');
+ my @cc = split /\s*,\s*/, $cgi->param('cc');
+ my @bug_mentor = split /\s*,\s*/, $cgi->param('bug_mentor');
my $new_bug = Bugzilla::Bug->create({
short_desc => scalar($cgi->param('short_desc')),
product => scalar($cgi->param('product')),