Browse Source

fix(user_ldap): Ensure host is a string when checking if `ldapi`

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
tags/v29.0.0beta1
Ferdinand Thiessen 8 months ago
parent
commit
b8fbd7721d
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      apps/user_ldap/lib/Configuration.php

+ 2
- 1
apps/user_ldap/lib/Configuration.php View File

@@ -607,6 +607,7 @@ class Configuration {
* Returns TRUE if the ldapHost variable starts with 'ldapi://'
*/
public function usesLdapi(): bool {
return (substr($this->config['ldapHost'], 0, strlen('ldapi://')) === 'ldapi://');
$host = $this->config['ldapHost'];
return is_string($host) && (substr($host, 0, strlen('ldapi://')) === 'ldapi://');
}
}

Loading…
Cancel
Save