aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/di/extension/core.php
diff options
context:
space:
mode:
authorrubencm <rubencm@gmail.com>2018-09-13 14:53:01 +0000
committerMarc Alexander <admin@m-a-styles.de>2019-05-09 21:20:16 +0200
commita702142a3483e0d80352e74d238938e6f01eaa2d (patch)
tree0b9856ea58a33b90f1e74578366875c09ef5c640 /phpBB/phpbb/di/extension/core.php
parentc20fed43cde6cf3c31130336bb45de860a536aae (diff)
downloadforums-a702142a3483e0d80352e74d238938e6f01eaa2d.tar
forums-a702142a3483e0d80352e74d238938e6f01eaa2d.tar.gz
forums-a702142a3483e0d80352e74d238938e6f01eaa2d.tar.bz2
forums-a702142a3483e0d80352e74d238938e6f01eaa2d.tar.xz
forums-a702142a3483e0d80352e74d238938e6f01eaa2d.zip
[ticket/12636] Rename log.session_errors to session.log_errors
PHPBB3-12636
Diffstat (limited to 'phpBB/phpbb/di/extension/core.php')
-rw-r--r--phpBB/phpbb/di/extension/core.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/di/extension/core.php b/phpBB/phpbb/di/extension/core.php
index 213e3a5890..0497c90e2a 100644
--- a/phpBB/phpbb/di/extension/core.php
+++ b/phpBB/phpbb/di/extension/core.php
@@ -101,9 +101,9 @@ class core extends Extension
}
// Set the log options
- foreach ($config['log'] as $name => $value)
+ foreach ($config['session'] as $name => $value)
{
- $container->setParameter('log.' . $name, $value);
+ $container->setParameter('session.' . $name, $value);
}
}