Bug #61994
closedfelogin redirect to forgot page not working (wrong packaging?)
0%
Description
In the latest TYPO3 source packages for 6.2.5 there is an error with the file
https://forge.typo3.org/projects/typo3cms-core/repository/revisions/master/entry/typo3/sysext/felogin/Classes/Controller/FrontendLoginController.php
namely in line 156 it reads in the current master (last changed 2014-07-25 21:49):
if ($this->piVars['forgot'] && $this->conf['showForgotPasswordLink']) {
while the downloadable source reads like this:
if ($this->piVars['forgot'] && $this->conf['showForgotPassword']) {
this causes my (and probably many other website's "forgot password" link to not work.
so to me it seems something went wrong when the package for 6.2.5 was created.
Updated by Markus Klein about 10 years ago
- Status changed from New to Needs Feedback
Nope this is correct.
There was a missing backport from current master, which is now part of the 6.2 branch. This backport was merged AFTER 6.2.5 was released.
Compare:
https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_6-2-5/typo3/sysext/felogin/Classes/Controller/FrontendLoginController.php
https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_6-2/typo3/sysext/felogin/Classes/Controller/FrontendLoginController.php
The commit:
https://github.com/TYPO3/TYPO3.CMS/commit/51f9f9f9de66975d8271dcaa319cbb97e0ed8910
Updated by Jan Schreier about 10 years ago
Ok I see. thank you for pointing me to this. It didn't show up like this in the repository log I looked at but that is maybe may lack of understanding backports which I will look into now :)
Updated by Markus Klein about 10 years ago
- Status changed from Needs Feedback to Closed