From: Arthur Schiwon Date: Fri, 26 Oct 2018 16:01:57 +0000 (+0200) Subject: fixes wrong variable usage X-Git-Tag: v14.0.4RC1~42^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=64fa99a97488dc6dced0aa609e93ae078c91f405;p=nextcloud-server.git fixes wrong variable usage Signed-off-by: Arthur Schiwon --- diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index a03b4a4cb9c..d615a4241bf 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -624,9 +624,9 @@ class Access extends LDAPUtility implements IUserTools { $this->connection->setConfiguration(['ldapCacheTTL' => $originalTTL]); $altName = $this->createAltInternalOwnCloudName($intName, $isUser); - if(is_string($altName) && $mapper->map($fdn, $altName, $uuid)) { - if($this->ncUserManager instanceof PublicEmitter && $isUser) { - $this->ncUserManager->emit('\OC\User', 'assignedUserId', [$intName]); + if (is_string($altName) && $mapper->map($fdn, $altName, $uuid)) { + if ($this->ncUserManager instanceof PublicEmitter && $isUser) { + $this->ncUserManager->emit('\OC\User', 'assignedUserId', [$altName]); } $newlyMapped = true; return $altName;