Ver código fonte

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 meses atrás
pai
commit
b8fbd7721d
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2
    1
      apps/user_ldap/lib/Configuration.php

+ 2
- 1
apps/user_ldap/lib/Configuration.php Ver arquivo

@@ -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://');
}
}

Carregando…
Cancelar
Salvar