From 62afdf38202ee9f09011bef599506e3a5ee37528 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 8 Feb 2013 03:51:31 -0800 Subject: more register_approve stuff - like the admin page. Hopefully this won't conflict with Thomas's admin page "list users" changes --- mod/admin.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'mod/admin.php') diff --git a/mod/admin.php b/mod/admin.php index 9a8a58cfc..aa3d7b294 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -496,13 +496,13 @@ function admin_page_users_post(&$a){ } if (x($_POST,'page_users_approve')){ - require_once("mod/regmod.php"); + require_once('include/account.php'); foreach($pending as $hash){ user_allow($hash); } } if (x($_POST,'page_users_deny')){ - require_once("mod/regmod.php"); + require_once('include/account.php'); foreach($pending as $hash){ user_deny($hash); } @@ -552,11 +552,9 @@ function admin_page_users(&$a){ } /* get pending */ - $pending = q("SELECT `register`.*, `contact`.`name`, `user`.`email` - FROM `register` - LEFT JOIN `contact` ON `register`.`uid` = `contact`.`uid` - LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;"); - + $pending = q("SELECT * from account where (account_flags & %d ) ", + intval(ACCOUNT_PENDING) + ); /* get users */ -- cgit v1.2.3