diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-12 02:35:18 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-12 02:35:18 +0000 |
commit | fbc5260995866c280fbc48bfb7899836f46136f4 (patch) | |
tree | 61987ccddfa881db07d8f730504d554d062b9e07 /mod | |
parent | dd45daaad8637f72aa9d0f927f89e637783fdbf8 (diff) | |
download | volse-hubzilla-fbc5260995866c280fbc48bfb7899836f46136f4.tar.gz volse-hubzilla-fbc5260995866c280fbc48bfb7899836f46136f4.tar.bz2 volse-hubzilla-fbc5260995866c280fbc48bfb7899836f46136f4.zip |
Get admin/users mostly working. Still need to associate channels with accounts.
Diffstat (limited to 'mod')
-rw-r--r-- | mod/admin.php | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/mod/admin.php b/mod/admin.php index aa3d7b294..e88936cf4 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -566,20 +566,9 @@ function admin_page_users(&$a){ // FIXME this is borked since there is no more user table - $users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date` - FROM - (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid` - FROM `item` - WHERE `item`.`type` = 'wall' - GROUP BY `item`.`uid`) AS `lastitem` - RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`, - `contact` - WHERE - `user`.`uid` = `contact`.`uid` - AND `user`.`verified` =1 - AND `contact`.`self` =1 - ORDER BY `contact`.`name` LIMIT %d, %d - ", +// $users = q("SELECT `account_email` FROM `account` +// ", + $users =q("SELECT `account_id` , `account_email`, `account_lastlog`, `account_created`, `account_service_class` FROM `account`", intval($a->pager['start']), intval($a->pager['itemspage']) ); @@ -591,6 +580,7 @@ function admin_page_users(&$a){ t('Community/Celebrity Account'), t('Automatic Friend Account') ); + $e['page_flags'] = $accounts[$e['page-flags']]; $e['register_date'] = relative_date($e['register_date']); $e['login_date'] = relative_date($e['login_date']); @@ -617,7 +607,7 @@ function admin_page_users(&$a){ '$unblock' => t('Unblock'), '$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'), t('Service Class')), '$confirm_delete_multi' => t('Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'), '$confirm_delete' => t('The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'), |