diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-23 17:39:11 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-23 17:39:11 -0700 |
commit | 8f33041e6542f12e6897ef6ed7a67c43a118c504 (patch) | |
tree | c5caf60f706dfa1043a69e135b5246bd63455aae /Bugzilla/Field | |
parent | 0a4878ccff5b9c281b018ad6c13fa5ac40986708 (diff) | |
download | bugs-8f33041e6542f12e6897ef6ed7a67c43a118c504.tar bugs-8f33041e6542f12e6897ef6ed7a67c43a118c504.tar.gz bugs-8f33041e6542f12e6897ef6ed7a67c43a118c504.tar.bz2 bugs-8f33041e6542f12e6897ef6ed7a67c43a118c504.tar.xz bugs-8f33041e6542f12e6897ef6ed7a67c43a118c504.zip |
Bug 572602: Change the way that Bugzilla::Object determines what fields
are required for create(). It now assumes that any column that is NOT NULL
and has not DEFAULT in the database is required. We also shift the burden
of throwing errors about empty values to the validators. This fixes the bug
that Bugzilla::Bug->create() wasn't populating default values for fields
if they weren't specified in the create() parameters.
r=timello, a=mkanat
Diffstat (limited to 'Bugzilla/Field')
-rw-r--r-- | Bugzilla/Field/Choice.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Bugzilla/Field/Choice.pm b/Bugzilla/Field/Choice.pm index e4cb4406a..0c44134ef 100644 --- a/Bugzilla/Field/Choice.pm +++ b/Bugzilla/Field/Choice.pm @@ -55,8 +55,6 @@ use constant UPDATE_COLUMNS => qw( use constant NAME_FIELD => 'value'; use constant LIST_ORDER => 'sortkey, value'; -use constant REQUIRED_CREATE_FIELDS => qw(value); - use constant VALIDATORS => { value => \&_check_value, sortkey => \&_check_sortkey, |