summaryrefslogtreecommitdiffstats
path: root/email_in.pl
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-24 02:39:11 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-24 02:39:11 +0200
commit8f33041e6542f12e6897ef6ed7a67c43a118c504 (patch)
treec5caf60f706dfa1043a69e135b5246bd63455aae /email_in.pl
parent0a4878ccff5b9c281b018ad6c13fa5ac40986708 (diff)
downloadbugzilla-8f33041e6542f12e6897ef6ed7a67c43a118c504.tar.gz
bugzilla-8f33041e6542f12e6897ef6ed7a67c43a118c504.tar.xz
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 'email_in.pl')
-rwxr-xr-xemail_in.pl7
1 files changed, 0 insertions, 7 deletions
diff --git a/email_in.pl b/email_in.pl
index 52ad27642..6033c31c4 100755
--- a/email_in.pl
+++ b/email_in.pl
@@ -152,13 +152,6 @@ sub post_bug {
my $user = Bugzilla->user;
- # Bugzilla::Bug->create throws a confusing CodeError if
- # the REQUIRED_CREATE_FIELDS are missing, but much more
- # sensible errors if the fields exist but are just undef.
- foreach my $field (Bugzilla::Bug::REQUIRED_CREATE_FIELDS) {
- $fields->{$field} = undef if !exists $fields->{$field};
- }
-
my ($retval, $non_conclusive_fields) =
Bugzilla::User::match_field({
'assigned_to' => { 'type' => 'single' },