mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Fixed: Moderators can't see self IP addresses (#1049)
This commit is contained in:
parent
444a872579
commit
130628248d
2 changed files with 2 additions and 2 deletions
|
@ -926,7 +926,7 @@ if (!isset($_REQUEST['dosearch'])) {
|
|||
'USER' => profile_url($rowset[$i]),
|
||||
'EMAIL' => $rowset[$i]['user_email'],
|
||||
'JOINDATE' => bb_date($rowset[$i]['user_regdate']),
|
||||
'LASTVISIT' => bb_date($rowset[$i]['user_lastvisit']),
|
||||
'LASTVISIT' => $rowset[$i]['user_lastvisit'] ? bb_date($rowset[$i]['user_lastvisit']) : $lang['NEVER'],
|
||||
'POSTS' => $rowset[$i]['user_posts'],
|
||||
'BAN' => (!isset($banned[$rowset[$i]['user_id']])) ? $lang['NOT_BANNED'] : $lang['BANNED'],
|
||||
'ABLED' => $rowset[$i]['user_active'] ? $lang['ENABLED'] : $lang['DISABLED'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue