Skip to content

Commit

Permalink
feat(groups): add setting display name to group backend
Browse files Browse the repository at this point in the history
  • Loading branch information
Iñaki Linaza Argüeso committed May 31, 2024
1 parent 308296b commit ca8f4e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/GroupBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ public function setDisplayName(string $gid, string $displayName): bool {
->set('displayname', $query->createNamedParameter($displayName))
->where($query->expr()->eq('gid', $query->createNamedParameter($gid)));
$query->execute();
$this->groupCache[$gid] = $displayName;

$this->groupCache[$gid] = $displayName;

return true;
}
Expand Down

0 comments on commit ca8f4e4

Please sign in to comment.