From 48ce68e612a169d8a5a2c413355c52d5492118fe Mon Sep 17 00:00:00 2001 From: joebauers Date: Sun, 26 Jan 2014 02:44:30 -0500 Subject: [PATCH] Update user.class.php No need to show world if valid account. --- public/include/classes/user.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/classes/user.class.php b/public/include/classes/user.class.php index 9bf67a6a..bf56d128 100644 --- a/public/include/classes/user.class.php +++ b/public/include/classes/user.class.php @@ -767,7 +767,7 @@ class User extends Base { } } if (!$aData['email'] = $this->getUserEmail($username, true)) { - $this->setErrorMessage("Unable to find a mail address for user $username"); + $this->setErrorMessage("Please check your mail account to finish your password reset"); return false; } if (!$aData['token'] = $this->token->createToken('password_reset', $this->getUserId($username, true))) {