From 48bc5295a9b22ea31dabd26f54a94742219f264e Mon Sep 17 00:00:00 2001 From: Helmut Hummel <typo3@helhum.io> Date: Sat, 12 May 2018 23:16:18 +0200 Subject: [PATCH] [BUGFIX] Allow setting SYS/session in ConfigurationManager The config path SYS/session is similar to SYS/caching/cacheConfigurations. Within the session configuration path session backends can be set since TYPO3 8.7. Allow this path for setting values with the ConfigurationManager. Resolves: #84536 Releases: master, 8.7 Change-Id: I52649673a16937119136d2fbdd0aa93c924d8f31 Reviewed-on: https://review.typo3.org/56948 Reviewed-by: Markus Klein <markus.klein@typo3.org> Tested-by: Markus Klein <markus.klein@typo3.org> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by: Helmut Hummel <typo3@helhum.io> Tested-by: Helmut Hummel <typo3@helhum.io> Reviewed-by: Nicole Cordes <typo3@cordes.co> Tested-by: Nicole Cordes <typo3@cordes.co> --- typo3/sysext/core/Classes/Configuration/ConfigurationManager.php | 1 + 1 file changed, 1 insertion(+) diff --git a/typo3/sysext/core/Classes/Configuration/ConfigurationManager.php b/typo3/sysext/core/Classes/Configuration/ConfigurationManager.php index c903158d0c67..0efd98c0b8f9 100644 --- a/typo3/sysext/core/Classes/Configuration/ConfigurationManager.php +++ b/typo3/sysext/core/Classes/Configuration/ConfigurationManager.php @@ -77,6 +77,7 @@ class ConfigurationManager 'EXTCONF', 'DB', 'SYS/caching/cacheConfigurations', + 'SYS/session', 'EXTENSIONS', ]; -- GitLab