diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2019-05-07 19:46:05 -0400 | 
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2019-05-07 19:52:39 -0400 | 
| commit | faf6ca7361f6500441f23d06f7cb3a3c11e92aa0 (patch) | |
| tree | fdb67792550b2189e878244baf649519ead35790 | |
| parent | 41baff41be27f0df19234232a0bffea69c323009 (diff) | |
RT# 83147 - Added new error message when email does not match because of case sensitivity
Conflicts:
	FS/FS/ClientAPI/MyAccount.pm
| -rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 470d12b11..16c1ccc36 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -244,7 +244,7 @@ sub login {        $contact = FS::contact->by_selfservice_email_custnum($p->{email}, $contact->custnum);      } -    return { error => 'Email '.$p->{email}.' not found!'} +    return { error => 'Username '.$p->{email}.' not found!'}        unless $contact;      return { error => 'Incorrect contact password.' } | 
