diff --git a/security/MemberAuthenticator.php b/security/MemberAuthenticator.php index e74cb1599..76d5046c5 100755 --- a/security/MemberAuthenticator.php +++ b/security/MemberAuthenticator.php @@ -46,7 +46,11 @@ class MemberAuthenticator extends Authenticator { if($member) { $result = $member->checkPassword($RAW_data['Password']); } else { - $result = new ValidationResult(false, _t('Member.ERRORWRONGCRED')); + $result = new ValidationResult( + false, + _t('Member.ERRORWRONGCRED', + 'That doesn\'t seem to be the right e-mail address or password. Please try again.' + )); } if($member && !$result->valid()) { @@ -141,4 +145,4 @@ class MemberAuthenticator extends Authenticator { } } -?> \ No newline at end of file +?>