1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

Merge pull request #5331 from rubencm/ticket/12636

[ticket/12636] Add session.log_errors
This commit is contained in:
Marc Alexander
2018-10-10 22:40:21 +02:00
committed by GitHub
5 changed files with 17 additions and 1 deletions

View File

@@ -112,6 +112,12 @@ class core extends Extension
{
$container->setParameter('debug.' . $name, $value);
}
// Set the log options
foreach ($config['session'] as $name => $value)
{
$container->setParameter('session.' . $name, $value);
}
}
/**