Changes between Initial Version and Version 1 of Ticket #29879
- Timestamp:
- Oct 22, 2018, 12:41:49 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29879 – Description
initial v1 11 11 I'd propose modifying the preface and relevant headings on that page from: 12 12 13 14 {{{ 13 15 First, you must get the CSRF token. How to do that depends on whether or not the CSRF_USE_SESSIONS setting is enabled. 14 16 15 17 Acquiring the token if CSRF_USE_SESSIONS is False/True 18 }}} 19 16 20 17 21 to: 18 22 23 24 {{{ 19 25 First, you must get the CSRF token. How to do that depends on whether or not the CSRF_USE_SESSIONS or CSRF_COOKIE_HTTPONLY setting is enabled. 20 26 … … 22 28 23 29 Acquiring the token if CSRF_COOKIE_HTTPONLY or CSRF_USE_SESSIONS is True 30 }}}