From: gerv%gerv.net <> Date: Sat, 14 Sep 2002 05:21:16 +0000 (+0000) Subject: Bug 25521 - Keyword field in new bug entry. Patch by jeff.hedlund@matrixsi.com; r... X-Git-Tag: bugzilla-2.17.1~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=229bf2d0d7a6c7b48b25e4d9c08c038184340a8a;p=thirdparty%2Fbugzilla.git Bug 25521 - Keyword field in new bug entry. Patch by jeff.hedlund@matrixsi.com; r=gerv. --- diff --git a/post_bug.cgi b/post_bug.cgi index b7fdf66d53..8d21f15050 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -220,6 +220,27 @@ if (defined $::FORM{'cc'}) { } } } +# Check for valid keywords and create list of keywords to be added to db +# (validity routine copied from process_bug.cgi) +my @keywordlist; +my %keywordseen; + +if ($::FORM{'keywords'} && UserInGroup("editbugs")) { + foreach my $keyword (split(/[\s,]+/, $::FORM{'keywords'})) { + if ($keyword eq '') { + next; + } + my $i = GetKeywordIdFromName($keyword); + if (!$i) { + $vars->{'keyword'} = $keyword; + ThrowUserError("unknown_keyword"); + } + if (!$keywordseen{$i}) { + push(@keywordlist, $i); + $keywordseen{$i} = 1; + } + } +} # Build up SQL string to add bug. my $sql = "INSERT INTO bugs " . @@ -281,6 +302,13 @@ foreach my $ccid (keys(%ccids)) { SendSQL("INSERT INTO cc (bug_id, who) VALUES ($id, $ccid)"); } +if (UserInGroup("editbugs")) { + foreach my $keyword (@keywordlist) { + SendSQL("INSERT INTO keywords (bug_id, keywordid) + VALUES ($id, $keyword)"); + } +} + SendSQL("UNLOCK TABLES") if Param("shadowdb"); # Assemble the -force* strings so this counts as "Added to this capacity" diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 3e776865b9..066c11b63a 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -177,6 +177,19 @@
+ + [% IF UserInGroup('editbugs') %] + + + + Keywords: + + + + (optional) + + + [% END %]