From: Brad Jorsch Date: Wed, 10 Feb 2016 19:03:50 +0000 (-0500) Subject: Improve docs for $wgPHPSessionHandling X-Git-Tag: 1.31.0-rc.0~7983^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/?a=commitdiff_plain;h=6d7057ee3a33c4403724a1449a37eb806c054ec8;p=lhc%2Fweb%2Fwiklou.git Improve docs for $wgPHPSessionHandling Change-Id: I5eacd8205c1346f6d1dde6d4a5fac51bbf6f2615 --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index a6a0c75b54..c886f135eb 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2301,7 +2301,11 @@ $wgSessionHandler = null; /** * Whether to use PHP session handling ($_SESSION and session_*() functions) - * @var string 'enable', 'warn', or 'disable' + * @since 1.27 + * @var string + * - 'enable': Integrate with PHP's session handling as much as possible. + * - 'warn': Integrate but log warnings if anything changes $_SESSION. + * - 'disable': Throw exceptions if PHP session handling is used. */ $wgPHPSessionHandling = 'enable';