diff options
author | root <roger.szabo@web.de> | 2016-07-27 15:16:57 +0800 |
---|---|---|
committer | root <roger.szabo@web.de> | 2016-07-27 15:16:57 +0800 |
commit | 1c64ee67afb41f3d3872f1ad59d5c3c900394bbb (patch) | |
tree | 5d8fd5aad4b679c6b54abf81be05b9516501a85b /apps | |
parent | 32fb6beac3fe9b202ed4a52f3a2bfede72cbc19b (diff) | |
download | nextcloud-server-1c64ee67afb41f3d3872f1ad59d5c3c900394bbb.tar.gz nextcloud-server-1c64ee67afb41f3d3872f1ad59d5c3c900394bbb.zip |
comments amended
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/User_LDAP.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/User_Proxy.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/tests/LDAPProviderTest.php | 1 |
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 |