mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3951 from RMcGirr83/ticket_14219
[ticket/14219] Add email to inactive user listing * RMcGirr83/ticket_14219: [ticket/14219] Add email to inactive user listing
This commit is contained in:
commit
7a60cdd1d3
2 changed files with 3 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{L_USERNAME}</th>
|
<th>{L_USERNAME}</th>
|
||||||
|
<th>{L_EMAIL}</th>
|
||||||
<th>{L_JOINED}</th>
|
<th>{L_JOINED}</th>
|
||||||
<th>{L_INACTIVE_DATE}</th>
|
<th>{L_INACTIVE_DATE}</th>
|
||||||
<th>{L_LAST_VISIT}</th>
|
<th>{L_LAST_VISIT}</th>
|
||||||
|
@ -32,6 +33,7 @@
|
||||||
{inactive.USERNAME_FULL}
|
{inactive.USERNAME_FULL}
|
||||||
<!-- IF inactive.POSTS --><br />{L_POSTS}{L_COLON} <strong>{inactive.POSTS}</strong> [<a href="{inactive.U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a>]<!-- ENDIF -->
|
<!-- IF inactive.POSTS --><br />{L_POSTS}{L_COLON} <strong>{inactive.POSTS}</strong> [<a href="{inactive.U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a>]<!-- ENDIF -->
|
||||||
</td>
|
</td>
|
||||||
|
<td style="vertical-align: top;">{inactive.USER_EMAIL}</td>
|
||||||
<td style="vertical-align: top;">{inactive.JOINED}</td>
|
<td style="vertical-align: top;">{inactive.JOINED}</td>
|
||||||
<td style="vertical-align: top;">{inactive.INACTIVE_DATE}</td>
|
<td style="vertical-align: top;">{inactive.INACTIVE_DATE}</td>
|
||||||
<td style="vertical-align: top;">{inactive.LAST_VISIT}</td>
|
<td style="vertical-align: top;">{inactive.LAST_VISIT}</td>
|
||||||
|
|
|
@ -274,6 +274,7 @@ class acp_inactive
|
||||||
'USERNAME_FULL' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour'], false, append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=overview&redirect=acp_inactive')),
|
'USERNAME_FULL' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour'], false, append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=overview&redirect=acp_inactive')),
|
||||||
'USERNAME' => get_username_string('username', $row['user_id'], $row['username'], $row['user_colour']),
|
'USERNAME' => get_username_string('username', $row['user_id'], $row['username'], $row['user_colour']),
|
||||||
'USER_COLOR' => get_username_string('colour', $row['user_id'], $row['username'], $row['user_colour']),
|
'USER_COLOR' => get_username_string('colour', $row['user_id'], $row['username'], $row['user_colour']),
|
||||||
|
'USER_EMAIL' => $row['user_email'],
|
||||||
|
|
||||||
'U_USER_ADMIN' => append_sid("{$phpbb_admin_path}index.$phpEx", "i=users&mode=overview&u={$row['user_id']}"),
|
'U_USER_ADMIN' => append_sid("{$phpbb_admin_path}index.$phpEx", "i=users&mode=overview&u={$row['user_id']}"),
|
||||||
'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id={$row['user_id']}&sr=posts") : '',
|
'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id={$row['user_id']}&sr=posts") : '',
|
||||||
|
|
Loading…
Add table
Reference in a new issue