Actions
Feature #50138
closedShow forgot password if conf showForgotPassword = 1
Status:
Closed
Priority:
Could have
Assignee:
-
Category:
felogin
Target version:
-
Start date:
2013-07-18
Due date:
% Done:
100%
Estimated time:
PHP Version:
Tags:
Complexity:
no-brainer
Sprint Focus:
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
Actions