From daefbf994d163aac6840984288c665757fa14974 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 22 Feb 2019 15:04:45 +0100 Subject: [PATCH] Documented the missing session.use_cookies config option --- reference/configuration/framework.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index fc07929a40f..2236d06dd32 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -156,6 +156,7 @@ Configuration * `name`_ * `save_path`_ * `storage_id`_ + * `use_cookies`_ * `templating`_ @@ -1004,6 +1005,15 @@ Whether to enable the session support in the framework. ], ]); +use_cookies +........... + +**type**: ``boolean`` **default**: ``null`` + +This specifies if the session ID is stored on the client side using cookies or +not. By default it will use the value defined in the ``php.ini`` with the +``session.use_cookies`` directive. + assets ~~~~~~