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
a8ae1c34
Commit
a8ae1c34
authored
Nov 09, 2009
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 526146: Use remove_from_db to delete keywords in editkeywords.cgi
Patch by Frank Becker <Frank@Frank-Becker.de> r=mkanat, a=mkanat
parent
47269232
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
editkeywords.cgi
editkeywords.cgi
+1
-2
No files found.
editkeywords.cgi
View file @
a8ae1c34
...
...
@@ -169,8 +169,7 @@ if ($action eq 'delete') {
my
$keyword
=
new
Bugzilla::
Keyword
(
$key_id
)
||
ThrowCodeError
(
'invalid_keyword_id'
,
{
id
=>
$key_id
});
$dbh
->
do
(
'DELETE FROM keywords WHERE keywordid = ?'
,
undef
,
$keyword
->
id
);
$dbh
->
do
(
'DELETE FROM keyworddefs WHERE id = ?'
,
undef
,
$keyword
->
id
);
$keyword
->
remove_from_db
();
delete_token
(
$token
);
...
...
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