mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: %40 instead of @ when using forgot password fix (fixes #6314, thanks Fragarach 87)
This commit is contained in:
parent
0b93a8f7cf
commit
e3f15dba9e
@ -517,7 +517,7 @@ class Security extends Controller {
|
||||
$controller = $this;
|
||||
}
|
||||
|
||||
$email = Convert::raw2xml($request->param('ID') . '.' . $request->getExtension());
|
||||
$email = Convert::raw2xml(rawurldecode($request->param('ID')) . '.' . $request->getExtension());
|
||||
|
||||
$customisedController = $controller->customise(array(
|
||||
'Title' => sprintf(_t('Security.PASSWORDSENTHEADER', "Password reset link sent to '%s'"), $email),
|
||||
|
Loading…
Reference in New Issue
Block a user