diff options
Diffstat (limited to 'Bugzilla/Field.pm')
-rw-r--r-- | Bugzilla/Field.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm index aa3551182..6b42cc4af 100644 --- a/Bugzilla/Field.pm +++ b/Bugzilla/Field.pm @@ -948,7 +948,7 @@ sub remove_from_db { } # Once we reach here, we should be OK to delete. - $dbh->do('DELETE FROM fielddefs WHERE id = ?', undef, $self->id); + $self->SUPER::remove_from_db(); my $type = $self->type; |