From a4eb5909588eb8be7e906206750d1b90c02ec4d1 Mon Sep 17 00:00:00 2001 From: Erik Romijn Date: Sat, 2 Aug 2014 18:57:34 +0200 Subject: [PATCH] [1.7.x] Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docs Backport of e26366da44bb343e7a95d01ff0dd18b8026c2802 from master. --- docs/topics/http/sessions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt index b8312fd0c4..4da64a1800 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::