summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Status.pm
diff options
context:
space:
mode:
authorEdmund Yan <edmundhyan@gmail.com>2011-08-21 02:11:29 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2011-08-21 02:11:29 +0200
commit4f023328eeab5dd137263a2488fb8ef307170f07 (patch)
tree7ba9bd964623b0079801887fb1fbd980a17014dd /Bugzilla/Status.pm
parente7d28afbc4990c564be08f77cc472f92962f8f45 (diff)
downloadbugzilla-4f023328eeab5dd137263a2488fb8ef307170f07.tar.gz
bugzilla-4f023328eeab5dd137263a2488fb8ef307170f07.tar.xz
Bug 679516: Call Bugzilla::Object->remove_from_db when deleting an object
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Status.pm')
-rw-r--r--Bugzilla/Status.pm7
1 files changed, 0 insertions, 7 deletions
diff --git a/Bugzilla/Status.pm b/Bugzilla/Status.pm
index ffef600de..f3d6d808c 100644
--- a/Bugzilla/Status.pm
+++ b/Bugzilla/Status.pm
@@ -76,14 +76,7 @@ sub create {
sub remove_from_db {
my $self = shift;
- my $dbh = Bugzilla->dbh;
- my $id = $self->id;
- $dbh->bz_start_transaction();
$self->SUPER::remove_from_db();
- $dbh->do('DELETE FROM status_workflow
- WHERE old_status = ? OR new_status = ?',
- undef, $id, $id);
- $dbh->bz_commit_transaction();
delete Bugzilla->request_cache->{status_bug_state_open};
}