Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
122c0407
Commit
122c0407
authored
Jul 06, 2010
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 576916: 'keywordaction' is undefined when editing a single bug
r/a=mkanat
parent
108eb83f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
process_bug.cgi
process_bug.cgi
+2
-1
edit-multiple.html.tmpl
template/en/default/list/edit-multiple.html.tmpl
+2
-2
No files found.
process_bug.cgi
View file @
122c0407
...
...
@@ -258,7 +258,8 @@ foreach my $field_name (@set_fields) {
}
if
(
should_set
(
'keywords'
))
{
my
$action
=
$cgi
->
param
(
'keywordaction'
);
my
$action
=
$cgi
->
param
(
'keywordaction'
)
||
''
;
# Backward-compatibility for Bugzilla 3.x and older.
$action
=
'remove'
if
$action
eq
'delete'
;
$action
=
'set'
if
$action
eq
'makeexact'
;
$set_all_fields
{
keywords
}
->
{
$action
}
=
$cgi
->
param
(
'keywords'
);
...
...
template/en/default/list/edit-multiple.html.tmpl
View file @
122c0407
...
...
@@ -230,8 +230,8 @@
%]
<select name="keywordaction">
<option value="add">Add these keywords</option>
<option value="
delet
e">Delete these keywords</option>
<option value="
makeexac
t">Make the keywords be exactly this list</option>
<option value="
remov
e">Delete these keywords</option>
<option value="
se
t">Make the keywords be exactly this list</option>
</select>
</td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment