1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #27039 -- Fixed empty data fallback to model field default in model forms.

This commit is contained in:
Tim Graham
2016-08-11 15:18:48 -04:00
parent 426bca002c
commit 4bc6b93994
6 changed files with 69 additions and 2 deletions

View File

@@ -79,3 +79,6 @@ Bugfixes
* Reallowed subclassing ``UserCreationForm`` without ``USERNAME_FIELD`` in
``Meta.fields`` (:ticket:`27111`).
* Fixed a regression in model forms where model fields with a ``default`` that
didn't appear in POST data no longer used the ``default`` (:ticket:`27039`).