summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-03-26 20:11:57 +0100
committerClaude Paroz <claude@2xlibre.net>2016-04-01 09:10:35 +0200
commit6a8ba2eef45ccc3022c88510bffd29734d71c39e (patch)
tree446f3986b40a06586b17771597d8fc81a35e3115 /docs
parenta304e7ddff23b14b8e6546a92eb5250d9cf6eaff (diff)
[1.9.x] Fixed #25532 -- Properly redisplayed JSONField form input values
Thanks David Szotten for the report and Tommy Beadle for code inspiration. Thanks Tim Graham for the review. Partial backport of db19619545 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.5.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.9.5.txt b/docs/releases/1.9.5.txt
index fc2c6cea03..ddd5fd5551 100644
--- a/docs/releases/1.9.5.txt
+++ b/docs/releases/1.9.5.txt
@@ -46,3 +46,6 @@ Bugfixes
* Fixed a migrations crash on SQLite when renaming the primary key of a model
containing a ``ForeignKey`` to ``'self'`` (:ticket:`26384`).
+
+* Fixed ``JSONField`` inadvertently escaping its contents when displaying values
+ after failed form validation (:ticket:`25532`).