diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
index 393df54..c3bbe48 100644
a
|
b
|
and we enforce protection on everything else.
|
961 | 961 | If you're using PUT or DELETE methods in AJAX applications, please see the |
962 | 962 | :ref:`instructions about using AJAX and CSRF <csrf-ajax>`. |
963 | 963 | |
| 964 | Password reset view now accepts ``subject_template_name`` |
| 965 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 966 | |
| 967 | The ``password_reset`` view in ``django.contrib.auth`` now accepts a |
| 968 | ``subject_template_name`` parameter, which is passed to the password save form |
| 969 | as a keyword argument. If you are using this view with a custom password reset |
| 970 | form, then you will need to ensure your form's ``save()`` method accepts this |
| 971 | keyword argument. |
| 972 | |
964 | 973 | ``django.core.template_loaders`` |
965 | 974 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
966 | 975 | |