summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2020-09-17 17:23:07 +0200
committerJ0WI <J0WI@users.noreply.github.com>2020-09-17 17:40:04 +0200
commit68ce17e59bf8bc09757f9b56fdad458679d6e988 (patch)
tree324ade0863f0680002324ccddcd8f4ae5e06f97c /apps/user_ldap
parentec07ca2abbc88f395b8eeedc4b2e5b679018a673 (diff)
downloadnextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.tar.gz
nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.zip
Unify links to php.net
Update all links to https://www.php.net/ Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/Access.php2
-rw-r--r--apps/user_ldap/lib/ILDAPWrapper.php2
-rw-r--r--apps/user_ldap/lib/LDAP.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php
index 01818079802..073144475ce 100644
--- a/apps/user_ldap/lib/Access.php
+++ b/apps/user_ldap/lib/Access.php
@@ -1785,7 +1785,7 @@ class Access extends LDAPUtility {
*
* @param string $oguid the ObjectGUID in it's binary form as retrieved from AD
* @return string
- * @link http://www.php.net/manual/en/function.ldap-get-values-len.php#73198
+ * @link https://www.php.net/manual/en/function.ldap-get-values-len.php#73198
*/
private function convertObjectGUID2Str($oguid) {
$hex_guid = bin2hex($oguid);
diff --git a/apps/user_ldap/lib/ILDAPWrapper.php b/apps/user_ldap/lib/ILDAPWrapper.php
index a96c2b52c4e..6b0b221da39 100644
--- a/apps/user_ldap/lib/ILDAPWrapper.php
+++ b/apps/user_ldap/lib/ILDAPWrapper.php
@@ -100,7 +100,7 @@ interface ILDAPWrapper {
* @param string $dn
* @param int @withAttrib
* @return array|false
- * @link http://www.php.net/manual/en/function.ldap-explode-dn.php
+ * @link https://www.php.net/manual/en/function.ldap-explode-dn.php
*/
public function explodeDN($dn, $withAttrib);
diff --git a/apps/user_ldap/lib/LDAP.php b/apps/user_ldap/lib/LDAP.php
index 63b2b9adcb9..b7101e2a686 100644
--- a/apps/user_ldap/lib/LDAP.php
+++ b/apps/user_ldap/lib/LDAP.php
@@ -148,7 +148,7 @@ class LDAP implements ILDAPWrapper {
* @param string $dn
* @param int @withAttrib
* @return array|false
- * @link http://www.php.net/manual/en/function.ldap-explode-dn.php
+ * @link https://www.php.net/manual/en/function.ldap-explode-dn.php
*/
public function explodeDN($dn, $withAttrib) {
return $this->invokeLDAPMethod('explode_dn', $dn, $withAttrib);