auto_start should be false

This commit is contained in:
Miha Vrhovnik 2012-02-29 15:34:20 +01:00
parent 6e2a7dabb6
commit 471b5648ef

View File

@ -205,7 +205,7 @@ abstract class AbstractSessionStorage implements SessionStorageInterface
// set defaults for certain values
$defaults = array(
'cache_limiter' => '', // disable by default because it's managed by HeaderBag (if used)
'auto_start' => true,
'auto_start' => false,
'use_cookies' => true,
'cookie_httponly' => true,
);