summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/user_ldap/lib/User_LDAP.php2
-rw-r--r--apps/user_ldap/lib/User_Proxy.php2
-rw-r--r--apps/user_ldap/tests/LDAPProviderTest.php1
3 files changed, 2 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php
index 712cc9601dd..7e5968e9003 100644
--- a/apps/user_ldap/lib/User_LDAP.php
+++ b/apps/user_ldap/lib/User_LDAP.php
@@ -96,7 +96,7 @@ class User_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
* returns the username for the given LDAP DN, if available
*
* @param string $dn
- * @return string|false with the name to use in ownCloud
+ * @return string|false with the username
*/
public function dn2UserName($dn) {
return $this->access->dn2username($dn);
diff --git a/apps/user_ldap/lib/User_Proxy.php b/apps/user_ldap/lib/User_Proxy.php
index 8537d22a43b..cced469a7ae 100644
--- a/apps/user_ldap/lib/User_Proxy.php
+++ b/apps/user_ldap/lib/User_Proxy.php
@@ -199,7 +199,7 @@ class User_Proxy extends Proxy implements \OCP\IUserBackend, \OCP\UserInterface,
* returns the username for the given LDAP DN, if available
*
* @param string $dn
- * @return string|false with the name to use in ownCloud
+ * @return string|false with the username
*/
public function dn2UserName($dn) {
$id = 'DN,' . $dn;
diff --git a/apps/user_ldap/tests/LDAPProviderTest.php b/apps/user_ldap/tests/LDAPProviderTest.php
index 071cc09fa63..97434897ce4 100644
--- a/apps/user_ldap/tests/LDAPProviderTest.php
+++ b/apps/user_ldap/tests/LDAPProviderTest.php
@@ -2,7 +2,6 @@
/**
* @author Roger Szabo <roger.szabo@web.de>
*
- * @copyright Copyright (c) 2016, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify