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

Fixed #28645 -- Reallowed AuthenticationForm to raise the inactive user error when using ModelBackend.

Regression in e0a3d93730.

Thanks Guilherme Junqueira for the report and Tim Graham for the review.
This commit is contained in:
shanghui
2017-11-08 16:32:49 +08:00
committed by Tim Graham
parent 3ae9c356c5
commit 359370a8b8
3 changed files with 13 additions and 4 deletions

View File

@@ -9,4 +9,5 @@ Django 1.11.8 fixes several bugs in 1.11.7.
Bugfixes
========
* ...
* Reallowed, following a regression in Django 1.10, ``AuthenticationForm`` to
raise the inactive user error when using ``ModelBackend`` (:ticket:`28645`).