mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[1.4.X] Fixed #18530 -- Fixed a small regression in the admin filters where wrongly formatted dates passed as url parameters caused an unhandled ValidationError. Thanks to david for the report.
This commit is contained in:
		| @@ -113,6 +113,7 @@ class Color2(Color): | ||||
| class Thing(models.Model): | ||||
|     title = models.CharField(max_length=20) | ||||
|     color = models.ForeignKey(Color, limit_choices_to={'warm': True}) | ||||
|     pub_date = models.DateField(blank=True, null=True) | ||||
|     def __unicode__(self): | ||||
|         return self.title | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user