From e488c1dc0d29f2de0d8bb31db604aa6384b7a60b Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Thu, 25 Feb 2010 17:18:27 +0000 Subject: Fixed #12901. Again. Model validation will not be performed on excluded fields that were overridden in the form. Thanks, ammarr. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12590 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/forms/models.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'django/forms/models.py') diff --git a/django/forms/models.py b/django/forms/models.py index 96e2008e3f..65fe1a7bd4 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -280,6 +280,8 @@ class BaseModelForm(BaseForm): # class. See #12901. elif self._meta.fields and field not in self._meta.fields: exclude.append(f.name) + elif self._meta.exclude and field in self._meta.exclude: + exclude.append(f.name) # Exclude fields that failed form validation. There's no need for # the model fields to validate them as well. -- cgit v1.3