BUGFIX: %40 instead of @ when using forgot password fix (fixes #6314, thanks Fragarach 87)

This commit is contained in:
Julian Seidenberg 2011-03-25 12:01:50 +13:00 committed by Ingo Schommer
parent 0b93a8f7cf
commit e3f15dba9e

View File

@ -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),