commit
52614bd72b
|
@ -694,7 +694,7 @@ function admin_page_users(&$a){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date`
|
$users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date`, `user`.`account_expired`
|
||||||
FROM
|
FROM
|
||||||
(SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
|
(SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
|
||||||
FROM `item`
|
FROM `item`
|
||||||
|
@ -718,7 +718,7 @@ function admin_page_users(&$a){
|
||||||
t('Normal Account'),
|
t('Normal Account'),
|
||||||
t('Soapbox Account'),
|
t('Soapbox Account'),
|
||||||
t('Community/Celebrity Account'),
|
t('Community/Celebrity Account'),
|
||||||
t('Automatic Friend Account')
|
t('Automatic Friend Account')
|
||||||
);
|
);
|
||||||
$e['page-flags'] = $accounts[$e['page-flags']];
|
$e['page-flags'] = $accounts[$e['page-flags']];
|
||||||
$e['register_date'] = relative_date($e['register_date']);
|
$e['register_date'] = relative_date($e['register_date']);
|
||||||
|
@ -756,6 +756,7 @@ function admin_page_users(&$a){
|
||||||
'$block' => t('Block'),
|
'$block' => t('Block'),
|
||||||
'$unblock' => t('Unblock'),
|
'$unblock' => t('Unblock'),
|
||||||
'$siteadmin' => t('Site admin'),
|
'$siteadmin' => t('Site admin'),
|
||||||
|
'$accountexpired' => t('Account expired'),
|
||||||
|
|
||||||
'$h_users' => t('Users'),
|
'$h_users' => t('Users'),
|
||||||
'$th_users' => array( t('Name'), t('Email'), t('Register date'), t('Last login'), t('Last item'), t('Account') ),
|
'$th_users' => array( t('Name'), t('Email'), t('Register date'), t('Last login'), t('Last item'), t('Account') ),
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
<td class='register_date'>$u.register_date</td>
|
<td class='register_date'>$u.register_date</td>
|
||||||
<td class='login_date'>$u.login_date</td>
|
<td class='login_date'>$u.login_date</td>
|
||||||
<td class='lastitem_date'>$u.lastitem_date</td>
|
<td class='lastitem_date'>$u.lastitem_date</td>
|
||||||
<td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }}</td>
|
<td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }}</td>
|
||||||
<td class="checkbox">
|
<td class="checkbox">
|
||||||
{{ if $u.is_admin }}
|
{{ if $u.is_admin }}
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
<td class='register_date'>{{$u.register_date}}</td>
|
<td class='register_date'>{{$u.register_date}}</td>
|
||||||
<td class='login_date'>{{$u.login_date}}</td>
|
<td class='login_date'>{{$u.login_date}}</td>
|
||||||
<td class='lastitem_date'>{{$u.lastitem_date}}</td>
|
<td class='lastitem_date'>{{$u.lastitem_date}}</td>
|
||||||
<td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}}</td>
|
<td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.accountexpired}}{{$account_expired}}{{/if}}</td>
|
||||||
<td class="checkbox">
|
<td class="checkbox">
|
||||||
{{if $u.is_admin}}
|
{{if $u.is_admin}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user