diff options
author | David Lawrence <dkl@mozilla.com> | 2016-05-19 22:21:36 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-05-19 22:21:36 +0200 |
commit | 3eb0bbad9975f5352a659fc32e998bffce30bd88 (patch) | |
tree | 0824cc500439475c52e781e06234d7398479d6d1 /Bugzilla | |
parent | aa35a9f5db405089c29c8705d8099ff6b715b985 (diff) | |
download | bugzilla-3eb0bbad9975f5352a659fc32e998bffce30bd88.tar.gz bugzilla-3eb0bbad9975f5352a659fc32e998bffce30bd88.tar.xz |
Bug 1262039 - typo in error message "Failed to retreive components..."
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Auth/Verify/LDAP.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Auth/Verify/LDAP.pm b/Bugzilla/Auth/Verify/LDAP.pm index 0f10f9fbf..9d438e411 100644 --- a/Bugzilla/Auth/Verify/LDAP.pm +++ b/Bugzilla/Auth/Verify/LDAP.pm @@ -111,7 +111,7 @@ sub check_credentials { if ($mail_attr) { if (!$user_entry->exists($mail_attr)) { return { failure => AUTH_ERROR, - error => "ldap_cannot_retreive_attr", + error => "ldap_cannot_retrieve_attr", details => {attr => $mail_attr} }; } |