summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMikhail Golubev <qsolo825@gmail.com>2017-05-22 14:52:56 -0700
committerTim Graham <timograham@gmail.com>2017-06-13 09:19:11 -0400
commit16431b03f801788d791bbb24d6fb266c3591ab07 (patch)
treef3081accccc085dfd5743900a344b33838167790 /docs
parentf908e9d015b5ac56b834f362339b03f6647e35ee (diff)
[1.11.x] Fixed #28229 -- Fixed the value of LoginView's "next" template variable.
Backport of e7dc39fb65e51d7613c941f7e5768b621dea4e76 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index 6afe77e8bb..5ff33e42e6 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -35,3 +35,8 @@ Bugfixes
* Prevented ``Paginator``’s unordered object list warning from evaluating a
``QuerySet`` (:ticket:`28284`).
+
+* Fixed the value of ``redirect_field_name`` in ``LoginView``’s template
+ context. It's now an empty string (as it is for the original function-based
+ ``login()`` view) if the corresponding parameter isn't sent in a request (in
+ particular, when the login page is accessed directly) (:ticket:`28229`).