1
0
mirror of https://github.com/django/django.git synced 2025-04-19 06:44:36 +00:00

[1.6.x] Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docs

Backport of e26366da44bb343e7a95d01ff0dd18b8026c2802 from master.
This commit is contained in:
Erik Romijn 2014-08-02 18:59:27 +02:00
parent 0dfc37669d
commit 316178efe6

View File

@ -123,7 +123,7 @@ and the :setting:`SECRET_KEY` setting.
.. note::
It's recommended to leave the :setting:`SESSION_COOKIE_HTTPONLY` setting
``True`` to prevent tampering of the stored data from JavaScript.
on ``True`` to prevent access to the stored data from JavaScript.
.. warning::