1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.11.x] Fixed #28555 -- Made CharField convert whitespace-only values to the empty_value when strip is enabled.

Backport of 48c394a6fc from master
This commit is contained in:
Josh Schneier
2017-09-05 12:41:38 -04:00
committed by Tim Graham
parent 312050df82
commit 1d1a56c599
3 changed files with 29 additions and 4 deletions

View File

@@ -9,4 +9,5 @@ Django 1.11.6 fixes several bugs in 1.11.5.
Bugfixes
========
* ...
* Made the ``CharField`` form field convert whitespace-only values to the
``empty_value`` when ``strip`` is enabled (:ticket:`28555`).