Fix indentation error

Signed-off-by: tgrant <tom.grant760@gmail.com>
This commit is contained in:
Tom Grant 2020-09-27 13:00:02 +01:00 committed by tgrant
parent f1710b57bc
commit 23dbbca1a0
1 changed files with 4 additions and 4 deletions

View File

@ -458,11 +458,11 @@ class Database extends ABackend implements
public function getDisplayName(string $gid): string {
if (isset($this->groupCache[$gid])) {
$displayName = $this->groupCache[$gid]['displayname'];
$displayName = $this->groupCache[$gid]['displayname'];
if (isset($displayName) && trim($displayName) !== '') {
return $displayName;
}
if (isset($displayName) && trim($displayName) !== '') {
return $displayName;
}
}
$this->fixDI();