Feature #50138
closedShow forgot password if conf showForgotPassword = 1
100%
Description
Sometimes 2 plugins felogin are in the same page : one in the header and the other in content's page of managing account.
If user uses the link forgot password, the 2 plugins show the form. Even if conf showForgotPassword is false.
It would be good to do a test before showing the form.
\typo3\sysext\felogin\Classes\Controller\FrontendLoginController.php l171
if ($this->piVars['forgot']) { $content .= $this->showForgot(); }
To :
if ($this->piVars['forgot'] && $this->conf['showForgotPassword']) { $content .= $this->showForgot(); }
Files
Updated by Alexander Opitz over 11 years ago
- Target version deleted (
next-patchlevel)
I would like to mark this as duplicate of #34597
Can you make a patch and send it to gerrit?
Updated by Nicolas Forgeot over 11 years ago
I hope it's good place / name for the patch : https://review.typo3.org/22535
Updated by Gerrit Code Review over 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22541
Updated by Gerrit Code Review about 11 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22541
Updated by Gerrit Code Review about 11 years ago
Patch set 3 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/22541
Updated by Nicolas Forgeot about 11 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset bd32759ecf920f51985bcd8ecef67a81f301c403.