Skip to content

Commit

Permalink
[BUGFIX] Adjust felogin changes with latest TYPO3 core (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
twoldanski committed Jul 20, 2023
1 parent 82149eb commit 4ddf88a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Classes/XClass/Controller/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function loginAction(): ResponseInterface
'permaloginStatus' => $this->getPermaloginStatus(),
'redirectURL' => $this->redirectHandler->getLoginFormRedirectUrl($this->request, $this->configuration, $this->isRedirectDisabled()),
'redirectReferrer' => $this->request->hasArgument('redirectReferrer') ? (string)$this->request->getArgument('redirectReferrer') : '',
'referer' => $this->getRefererForLoginForm(),
'referer' => $this->redirectHandler->getReferrerForLoginForm($this->request, $this->settings),
'noRedirect' => $this->isRedirectDisabled(),
'requestToken' => RequestToken::create('core/user-auth/fe')
->withMergedParams(['pid' => implode(',', $storagePageIds)]),
Expand Down
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@
"typo3/cms-form": "^12.4",
"typo3/testing-framework": "^7.0"
},
"conflict": {
"typo3/cms-core": "<12.4.3"
},
"config": {
"preferred-install": {
"*": "dist"
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
'version' => '4.1.0',
'constraints' => [
'depends' => [
'frontend' => '12.2.0-12.5.99',
'typo3' => '12.2.0-12.5.99'
'frontend' => '12.4.3-12.5.99',
'typo3' => '12.4.3-12.5.99'
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit 4ddf88a

Please sign in to comment.