summaryrefslogtreecommitdiffstats
path: root/editcomponents.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-xeditcomponents.cgi14
1 files changed, 5 insertions, 9 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi
index dcca05bba..30f9dd4ea 100755
--- a/editcomponents.cgi
+++ b/editcomponents.cgi
@@ -608,15 +608,11 @@ if ($action eq 'delete') {
while (MoreSQLData()) {
my $bugid = FetchOneColumn();
- my $query =
- $::db->query("DELETE FROM attachments WHERE bug_id=$bugid")
- or die "$::db_errstr";
- $query =
- $::db->query("DELETE FROM bugs_activity WHERE bug_id=$bugid")
- or die "$::db_errstr";
- $query =
- $::db->query("DELETE FROM dependencies WHERE blocked=$bugid")
- or die "$::db_errstr";
+ PushGlobalSQLState();
+ SendSQL("DELETE FROM attachments WHERE bug_id=$bugid");
+ SendSQL("DELETE FROM bugs_activity WHERE bug_id=$bugid");
+ SendSQL("DELETE FROM dependencies WHERE blocked=$bugid");
+ PopGlobalSQLState();
}
print "Attachments, bug activity and dependencies deleted.<BR>\n";