Skip to content

Commit

Permalink
Fix indentation error
Browse files Browse the repository at this point in the history
Signed-off-by: tgrant <tom.grant760@gmail.com>
  • Loading branch information
TomG736 authored and backportbot[bot] committed Sep 10, 2021
1 parent adec0af commit a67fcf0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/private/Group/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -456,11 +456,11 @@ public function countDisabledInGroup(string $gid): int {

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();
Expand Down

0 comments on commit a67fcf0

Please sign in to comment.