Skip to content

Commit

Permalink
[FrameworkBundle][Session] Add auto_start pass to the storage options
Browse files Browse the repository at this point in the history
  • Loading branch information
yethee committed Feb 13, 2012
1 parent b80951c commit a395873
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -294,7 +294,7 @@ private function registerSessionConfiguration(array $config, ContainerBuilder $c
// session storage
$container->setAlias('session.storage', $config['storage_id']);
$options = array();
foreach (array('name', 'lifetime', 'path', 'domain', 'secure', 'httponly') as $key) {
foreach (array('name', 'lifetime', 'path', 'domain', 'secure', 'httponly', 'auto_start') as $key) {
if (isset($config[$key])) {
$options[$key] = $config[$key];
}
Expand Down

0 comments on commit a395873

Please sign in to comment.