aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/user_ldap/lib/connection.php2
-rw-r--r--apps/user_ldap/user_ldap.php3
2 files changed, 4 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index fc6df5fc602..d5b4936b68b 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -34,6 +34,8 @@ use OC\ServerNotAvailableException;
* magic properties (incomplete)
* responsible for LDAP connections in context with the provided configuration
*
+ * @property string ldapHost
+ * @property string ldapPort holds the port number
* @property string ldapUserFilter
* @property string ldapUserDisplayName
* @property string ldapUserDisplayName2
diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php
index 865b7e61892..26d3429818f 100644
--- a/apps/user_ldap/user_ldap.php
+++ b/apps/user_ldap/user_ldap.php
@@ -102,7 +102,8 @@ class USER_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
$attrs = $this->access->userManager->getAttributes();
$users = $this->access->fetchUsersByLoginName($loginName, $attrs, 1);
if(count($users) < 1) {
- throw new \Exception('No user available for the given login name.');
+ throw new \Exception('No user available for the given login name on ' .
+ $this->access->connection->ldapHost . ':' . $this->access->connection->ldapPort);
}
return $users[0];
}