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
09df4b6f
Commit
09df4b6f
authored
Feb 20, 2010
by
Bodo-Merle Sandor
Committed by
Frédéric Buclin
Feb 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 547428: SQL error when deleting a product and its related series when it has none
r/a=LpSolit
parent
b9022b0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Product.pm
Bugzilla/Product.pm
+3
-1
No files found.
Bugzilla/Product.pm
View file @
09df4b6f
...
...
@@ -298,7 +298,9 @@ sub remove_from_db {
WHERE series_categories.name = ?'
,
undef
,
$self
->
name
);
$dbh
->
do
(
'DELETE FROM series WHERE '
.
$dbh
->
sql_in
(
'series_id'
,
$series_ids
));
if
(
scalar
@$series_ids
)
{
$dbh
->
do
(
'DELETE FROM series WHERE '
.
$dbh
->
sql_in
(
'series_id'
,
$series_ids
));
}
# If no subcategory uses this product name, completely purge it.
my
$in_use
=
...
...
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