From ce352fa5e384270db8e99e318c340320333fa8a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Tue, 5 May 2015 20:29:31 +0200 Subject: [PATCH] Minor fix to #65ccc05 - Fixing information disclosure when resetting password --- app/coffee/modules/auth.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/coffee/modules/auth.coffee b/app/coffee/modules/auth.coffee index adf2f498..e70207b6 100644 --- a/app/coffee/modules/auth.coffee +++ b/app/coffee/modules/auth.coffee @@ -272,7 +272,7 @@ ForgotPasswordDirective = ($auth, $confirm, $location, $navUrls, $translate) -> onSuccessSubmit = (response) -> $location.path($navUrls.resolve("login")) - text = $translate.instant("FORGOT_PASSWORD_FORM.SUCCESS", {email: response.data.email}) + text = $translate.instant("FORGOT_PASSWORD_FORM.SUCCESS") $confirm.success(text) onErrorSubmit = (response) ->