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:04:20 +0200
commitdb19619545dd99a1d2502c72974d79eca33acff7 (patch)
tree114ee5c154d19d49d06d4f6e9e1deb4e2d4e7039 /docs
parent64aba7a8aba06b8be52a1a099b44e1d3be4bdd26 (diff)
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.
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`).