diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-11 01:46:59 +0100 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-02-11 01:46:59 +0100 |
commit | aca53c540c69496390b172a55a46b817d2828d0f (patch) | |
tree | 6d300d90bfb2ac744b192a074428e8ef0b81e1e6 /Bugzilla/Field | |
parent | d4f7ab1e416445c9a56a9da93eddc536099d22c2 (diff) | |
download | bugzilla-aca53c540c69496390b172a55a46b817d2828d0f.tar.gz bugzilla-aca53c540c69496390b172a55a46b817d2828d0f.tar.xz |
Bug 545541: New Hook: object_columns
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'Bugzilla/Field')
-rw-r--r-- | Bugzilla/Field/Choice.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Field/Choice.pm b/Bugzilla/Field/Choice.pm index 9c2fbdb38..95fb4bf82 100644 --- a/Bugzilla/Field/Choice.pm +++ b/Bugzilla/Field/Choice.pm @@ -142,7 +142,7 @@ sub create { my $class = shift; my ($params) = @_; foreach my $key (keys %$params) { - if (!grep {$_ eq $key} $class->DB_COLUMNS) { + if (!grep {$_ eq $key} $class->_get_db_columns) { delete $params->{$key}; } } |