diff options
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 12 |
1 files changed, 5 insertions, 7 deletions
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 */ |