summaryrefslogtreecommitdiff
path: root/FS/FS/ClientAPI
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-05-07 19:46:05 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-05-07 19:46:05 -0400
commitfeec2d98f3bf5b53cdbd9d88cb4638d37439964a (patch)
tree5212af85a0711bde3c90416e31b71d3a76233794 /FS/FS/ClientAPI
parente3d1afe8e108bbdaf019107109d4b9d9f19a6f8b (diff)
RT# 83147 - Added new error message when email does not match because of case sensitivity
Diffstat (limited to 'FS/FS/ClientAPI')
-rw-r--r--FS/FS/ClientAPI/MyAccount.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm
index 6166a37..5577f57 100644
--- a/FS/FS/ClientAPI/MyAccount.pm
+++ b/FS/FS/ClientAPI/MyAccount.pm
@@ -252,7 +252,7 @@ sub login {
else { push @cust_contact, $customer; }
}
- return { error => 'Email '.$p->{email}.' not found!'}
+ return { error => 'Username '.$p->{email}.' not found!'}
unless @cust_contact;
return { error => 'Incorrect contact password.' }