From 34daa0804c768a6cdeb31d123833b66b5ad89f3c Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 12 Dec 2010 22:57:37 +0000 Subject: Fixed #14144 -- Made sure custom validators are called in ModelMultipleChoiceFields. Thanks, matiasb. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14886 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/forms/models.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'django/forms') diff --git a/django/forms/models.py b/django/forms/models.py index 4ffc3b6fac..de52b6a7e0 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -1045,6 +1045,9 @@ class ModelMultipleChoiceField(ModelChoiceField): for val in value: if force_unicode(val) not in pks: raise ValidationError(self.error_messages['invalid_choice'] % val) + # Since this overrides the inherited ModelChoiceField.clean + # we run custom validators here + self.run_validators(value) return qs def prepare_value(self, value): -- cgit v1.3