diff --git a/application/language/english/aauth_lang.php b/application/language/english/aauth_lang.php index c6b7bbb..437a69d 100644 --- a/application/language/english/aauth_lang.php +++ b/application/language/english/aauth_lang.php @@ -38,6 +38,7 @@ $lang['aauth_error_update_username_exists'] = "Username already exists on the sy $lang['aauth_error_no_access'] = 'Sorry, you do not have access to the resource you requested.'; $lang['aauth_error_login_failed_email'] = 'E-mail Address and Password do not match.'; $lang['aauth_error_login_failed_name'] = 'Username and Password do not match.'; +$lang['aauth_error_login_failed_all'] = 'E-mail, Username or Password do not match.'; $lang['aauth_error_login_attempts_exceeded'] = 'You have exceeded your login attempts, your account has now been locked.'; $lang['aauth_error_recaptcha_not_correct'] = 'Sorry, the reCAPTCHA text entered was incorrect.'; diff --git a/application/libraries/Aauth.php b/application/libraries/Aauth.php index 58a0540..2100c60 100644 --- a/application/libraries/Aauth.php +++ b/application/libraries/Aauth.php @@ -349,7 +349,7 @@ class Aauth { // if not matches else { - $this->error($this->CI->lang->line('aauth_error_login_failed')); + $this->error($this->CI->lang->line('aauth_error_login_failed_all')); return FALSE; } } @@ -2376,4 +2376,4 @@ return FALSE; /* End of file Aauth.php */ -/* Location: ./application/libraries/Aauth.php */ \ No newline at end of file +/* Location: ./application/libraries/Aauth.php */