summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-12-04 09:11:30 -0500
committerTim Graham <timograham@gmail.com>2014-12-04 10:57:10 -0500
commit765fa36d57d08d0568438f6fd74521e7a56abb61 (patch)
tree704c6b07f0b74dc50d535b80bfbec5fea9e14bff /docs
parent018d110ef547acb71b0526d0ff934e1e476244e4 (diff)
Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.
Thanks wkornewald for the report and Markus Holtermann for review.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 771e353818..e3db0d404e 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -107,4 +107,7 @@ Bugfixes
* Prevented the
:class:`~django.contrib.auth.middleware.SessionAuthenticationMiddleware` from
- setting a ``"Vary: Cookie"`` header on all responses.
+ setting a ``"Vary: Cookie"`` header on all responses (:ticket:`23939`).
+
+* Fixed a crash when adding ``blank=True`` to ``TextField()`` on MySQL
+ (:ticket:`23920`).