summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Romijn <eromijn@solidlinks.nl>2014-08-02 18:52:07 +0200
committerErik Romijn <eromijn@solidlinks.nl>2014-08-02 18:55:20 +0200
commite26366da44bb343e7a95d01ff0dd18b8026c2802 (patch)
treee3a8da15ccfd0c419dcdbaaa50606d05cc0d18e6 /docs
parentd28396f5268f1974ef1e84d13bcf1ac107005ced (diff)
Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docs
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 3551cfcf77..b97dc1bc79 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -124,7 +124,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::