mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-20 13:24:01 -07:00
Fixed broken sorting in group.php (#1221)
* Fixed broken sorting in group.php * Update CHANGELOG.md
This commit is contained in:
parent
1da4d46822
commit
b5891ca663
7 changed files with 17 additions and 10 deletions
|
@ -811,7 +811,7 @@ function generate_user_info($row, bool $have_auth = IS_ADMIN): array
|
|||
$www = $lang['NOSELECT'];
|
||||
}
|
||||
|
||||
return ['from' => $from, 'joined' => $joined, 'posts' => $posts, 'pm' => $pm, 'avatar' => $avatar, 'user_time' => $user_time, 'email' => $email, 'www' => $www];
|
||||
return ['from' => $from, 'joined' => $joined, 'joined_raw' => $row['user_regdate'], 'posts' => $posts, 'pm' => $pm, 'avatar' => $avatar, 'user_time' => $user_time, 'user_time_raw' => $row['user_time'], 'email' => $email, 'www' => $www];
|
||||
}
|
||||
|
||||
function get_bt_userdata($user_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue