Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tadhgboyle committed Apr 11, 2023
1 parent 5887460 commit 9b88f5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -16,6 +16,7 @@ public function __construct() {
'face' => 'helm',
'head' => 'cube'
];
$this->_supports_usernames = true;
}

public function getUrlToFormat(string $perspective): string {
Expand Down
2 changes: 1 addition & 1 deletion modules/Core/queries/admin_users.php
Expand Up @@ -71,7 +71,7 @@

$obj = new stdClass();
$obj->id = $result->id;
$obj->username = "<img src='{$user->getAvatar(30)}' style='padding-right: 5px; max-height: 30px;'>" . Output::getClean($result->username) . "</img>";
$obj->username = "<img src='{$user->getAvatar(64)}' style='padding-right: 5px; max-height: 30px;'>" . Output::getClean($result->username) . "</img>";
$obj->joined = date(DATE_FORMAT, $result->joined);

// Get group
Expand Down

0 comments on commit 9b88f5e

Please sign in to comment.