summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-10-06 16:07:20 -0400
committerTim Graham <timograham@gmail.com>2014-10-06 17:37:38 -0400
commit96f022203a552fef19403c01b12fa6d30da560a0 (patch)
treef5108ea1f361614cec4380e31f538a1069fe3cd7 /docs
parentc2508990cb53b52783ebb38dc0b5f0ab5d023c76 (diff)
[1.7.x] Fixed #23593 -- Fixed crash in AdminEmailHandler with non-ASCII characters in request.
Thanks edevil for the report and Simon Charette for review. Backport of 9dff5ce7c7 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 0a5a0163b8..1604e75da8 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -97,3 +97,6 @@ Bugfixes
possible to import arbitrary packages from the Python path. This was not
considered a security issue because ``admindocs`` is only accessible to staff
users (:ticket:`23601`).
+
+* Fixed ``UnicodeDecodeError`` crash in ``AdminEmailHandler`` with non-ASCII
+ characters in the request (:ticket:`23593`).