diff options
author | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-03-07 12:06:09 +0100 |
---|---|---|
committer | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-03-07 12:06:09 +0100 |
commit | b2df1205ef805ab471a73f906d2eda5603a1aa66 (patch) | |
tree | 137e81ed5c1227bdd502156811e1ce85e3d23cdc /mod/admin.php | |
parent | fbc017cdba81fa7b159bca5fd0b3a4fb4885c5ad (diff) | |
parent | 0d9c2ca06f9394bc039a43410d3902338e8412a1 (diff) | |
download | volse-hubzilla-b2df1205ef805ab471a73f906d2eda5603a1aa66.tar.gz volse-hubzilla-b2df1205ef805ab471a73f906d2eda5603a1aa66.tar.bz2 volse-hubzilla-b2df1205ef805ab471a73f906d2eda5603a1aa66.zip |
merged
Diffstat (limited to 'mod/admin.php')
-rwxr-xr-x | mod/admin.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/admin.php b/mod/admin.php index 0f600e312..94bf44503 100755 --- a/mod/admin.php +++ b/mod/admin.php @@ -366,7 +366,7 @@ function admin_page_users_post(&$a){ intval( $uid ) ); } - notice( sprintf( tt("%s user blocked", "%s users blocked/unblocked", count($users)), count($users)) ); + notice( sprintf( tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)), count($users)) ); } if (x($_POST,'page_users_delete')){ require_once("include/Contact.php"); @@ -428,6 +428,7 @@ function admin_page_users(&$a){ LEFT JOIN `contact` ON `register`.`uid` = `contact`.`uid` LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;"); + /* get users */ $total = q("SELECT count(*) as total FROM `user` where 1"); @@ -435,7 +436,8 @@ function admin_page_users(&$a){ $a->set_pager_total($total[0]['total']); $a->set_pager_itemspage(100); } - + + $users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date` FROM (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid` @@ -469,6 +471,7 @@ function admin_page_users(&$a){ } $users = array_map("_setup_users", $users); + $t = get_markup_template("admin_users.tpl"); $o = replace_macros($t, array( // strings // |