summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xeditkeywords.cgi7
1 files changed, 3 insertions, 4 deletions
diff --git a/editkeywords.cgi b/editkeywords.cgi
index 06e28b79a..ab079e540 100755
--- a/editkeywords.cgi
+++ b/editkeywords.cgi
@@ -71,12 +71,11 @@ if ($action eq 'add') {
#
if ($action eq 'new') {
check_token_data($token, 'add_keyword');
- my $name = $cgi->param('name') || '';
- my $is_active = $cgi->param('is_active');
- my $desc = $cgi->param('description') || '';
+ my $name = $cgi->param('name') || '';
+ my $desc = $cgi->param('description') || '';
my $keyword = Bugzilla::Keyword->create(
- { name => $name, is_active => $is_active, description => $desc });
+ { name => $name, description => $desc });
delete_token($token);