summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSrinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>2017-07-13 20:25:32 +0530
committerTim Graham <timograham@gmail.com>2017-07-14 13:27:30 -0400
commita3b5df8ed503ea559d2ffaca7ec0c735d98f1a38 (patch)
tree3430d666d9322066f49390ce2a54501d485ef39c /docs
parentfc6b90bdb7a9531e988245942f79518308616b7b (diff)
[1.11.x] Fixed #28387 -- Fixed has_changed() for disabled form fields that subclass it.
Backport of 5debbdfcc84266703191e084914998e38f5f52eb from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.4.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.4.txt b/docs/releases/1.11.4.txt
index 9448611ecc..c64f5c9c6f 100644
--- a/docs/releases/1.11.4.txt
+++ b/docs/releases/1.11.4.txt
@@ -21,3 +21,7 @@ Bugfixes
* Fixed crash in ``runserver``'s ``autoreload`` with Python 2 on Windows with
non-``str`` environment variables (:ticket:`28174`).
+
+* Corrected ``Field.has_changed()`` to return ``False`` for disabled form
+ fields: ``BooleanField``, ``MultipleChoiceField``, ``MultiValueField``,
+ ``FileField``, ``ModelChoiceField``, and ``ModelMultipleChoiceField``.