summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Romijn <eromijn@solidlinks.nl>2014-08-02 19:00:50 +0200
committerErik Romijn <eromijn@solidlinks.nl>2014-08-02 19:00:50 +0200
commit12ac0bb91bd2c18c06409e88b025f42cfe1ef555 (patch)
tree8a2ad0f6d8fab139bee62bf996f76bdd1ae53342 /docs
parent291e837bda016d8556c2f6a4712729955a1667d0 (diff)
[1.5.x] Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docs
Backport of e26366da44bb343e7a95d01ff0dd18b8026c2802 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/http/sessions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index e063020553..71f6247168 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -120,7 +120,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::