From 158e7804e780aa4dd227847856d14cf3214c2d67 Mon Sep 17 00:00:00 2001 From: Osaetin Daniel Date: Sun, 27 May 2018 21:50:30 +0100 Subject: [PATCH] [2.1.x] Fixed docs typo in HttpResponse.set_signed_cookie() signature. Backport of cd242d185bda9269913d4d101a7f704204ec907d from master --- docs/ref/request-response.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 05cb24f3b1..6ad879079f 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -793,7 +793,7 @@ Methods to store a cookie of more than 4096 bytes, but many browsers will not set the cookie correctly. -.. method:: HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=True, samesite=None) +.. method:: HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False, samesite=None) Like :meth:`~HttpResponse.set_cookie()`, but :doc:`cryptographic signing ` the cookie before setting