Skip to content

Commit

Permalink
fix for #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Wappler committed Nov 15, 2023
1 parent 8822fa5 commit 940725c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Classes/Session/UserSessionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public static function create(string $loginType, int $sessionLifetime = null, Se
self::class,
$sessionManager->getSessionBackend($loginType),
$sessionLifetime,
$ipLocker
$ipLocker,
$loginType
);
if ($loginType === 'FE') {
$object->setGarbageCollectionTimeoutForAnonymousSessions((int)($GLOBALS['TYPO3_CONF_VARS']['FE']['sessionDataLifetime'] ?? 0));
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"homepage": "https://wappler.systems",
"require": {
"typo3/cms-core": "^11"
"typo3/cms-core": "^11.5.33"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'version' => '11.0.0',
'constraints' => [
'depends' => [
'typo3' => '11.0.0-11.5.99',
'typo3' => '11.5.33-11.5.99',
],
'conflicts' => [
],
Expand Down

0 comments on commit 940725c

Please sign in to comment.