Przeglądaj źródła

fix: Avoid useless reference usage in user_ldap

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/44533/head
Côme Chilliet 1 miesiąc temu
rodzic
commit
85cea1960b
No account linked to committer's email address

+ 1
- 1
apps/user_ldap/lib/Group_Proxy.php Wyświetl plik

$this->backends[$configPrefix] = $this->backends[$configPrefix] =
new Group_LDAP($this->getAccess($configPrefix), $this->groupPluginManager, $this->config, $this->ncUserManager); new Group_LDAP($this->getAccess($configPrefix), $this->groupPluginManager, $this->config, $this->ncUserManager);
if (is_null($this->refBackend)) { if (is_null($this->refBackend)) {
$this->refBackend = &$this->backends[$configPrefix];
$this->refBackend = $this->backends[$configPrefix];
} }
} }



+ 1
- 0
apps/user_ldap/lib/LDAP.php Wyświetl plik

$serverControls = []; $serverControls = [];
} }


/** @psalm-suppress UndefinedVariable $oldHandler is defined when the closure is called but psalm fails to get that */
$oldHandler = set_error_handler(function ($no, $message, $file, $line) use (&$oldHandler) { $oldHandler = set_error_handler(function ($no, $message, $file, $line) use (&$oldHandler) {
if (str_contains($message, 'Partial search results returned: Sizelimit exceeded')) { if (str_contains($message, 'Partial search results returned: Sizelimit exceeded')) {
return true; return true;

+ 1
- 1
apps/user_ldap/lib/User_Proxy.php Wyświetl plik

); );


if (is_null($this->refBackend)) { if (is_null($this->refBackend)) {
$this->refBackend = &$this->backends[$configPrefix];
$this->refBackend = $this->backends[$configPrefix];
} }
} }



Ładowanie…
Anuluj
Zapisz