From b48c481b9cb1b1c06634139dc0e6c4c91b83d873 Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Fri, 15 Mar 2013 15:25:39 +0000 Subject: [PATCH] Tidy up --- mod/admin.php | 9 ++++----- view/tpl/admin_users.tpl | 3 --- view/tpl/smarty3/admin_users.tpl | 10 ++++------ 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/mod/admin.php b/mod/admin.php index e88936cf4..be8575e4e 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -564,10 +564,9 @@ function admin_page_users(&$a){ $a->set_pager_itemspage(100); } -// FIXME this is borked since there is no more user table - -// $users = q("SELECT `account_email` FROM `account` -// ", + +// WEe'll still need to link email addresses to admin/users/channels or some such, but this bit doesn't exist yet. +// That's where we need to be doing last post/channel flags/etc, not here. $users =q("SELECT `account_id` , `account_email`, `account_lastlog`, `account_created`, `account_service_class` FROM `account`", intval($a->pager['start']), intval($a->pager['itemspage']) @@ -607,7 +606,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'), t('Service Class')), + '$th_users' => array( t('Email'), t('Register date'), t('Last login'), 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?'), diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl index b8822175c..6de504e2a 100644 --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -65,12 +65,9 @@ {{ for $users as $u }} $u.nickname - $u.name $u.account_email $u.account_created $u.account_lastlog - $u.lastitem_date - $u.page_flags $u.account_service_class diff --git a/view/tpl/smarty3/admin_users.tpl b/view/tpl/smarty3/admin_users.tpl index 5448a08c4..136ce3c3e 100644 --- a/view/tpl/smarty3/admin_users.tpl +++ b/view/tpl/smarty3/admin_users.tpl @@ -70,12 +70,10 @@ {{foreach $users as $u}} {{$u.nickname}} - {{$u.name}} - {{$u.email}} - {{$u.register_date}} - {{$u.login_date}} - {{$u.lastitem_date}} - {{$u.page_flags}} + {{$u.account_email}} + {{$u.account_created}} + {{$u.account_lastlog}} + {{$u.account_service_class}}