N°1175 : Fixed missing params error occurring when resetting password from a notification linking to portal.

SVN:trunk[5763]
This commit is contained in:
Stephen Abello
2018-05-02 08:19:27 +00:00
parent 21aed2d2e1
commit 3974406f1b

View File

@@ -195,7 +195,7 @@ class LoginWebPage extends NiceWebPage
*/
public function ForgotPwdLink()
{
$sUrl = '?loginop=forgot_pwd';
$sUrl = utils::GetAbsoluteUrlAppRoot() . 'pages/UI.php?loginop=forgot_pwd';
$sHtml = "<a href=\"$sUrl\" target=\"_blank\">".Dict::S('UI:Login:ForgotPwd')."</a>";
return $sHtml;
}