diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-28 14:18:52 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-28 14:18:52 +0000 |
commit | 4c87b7480ec92755ccf30aaa39a2132b95693e9b (patch) | |
tree | 4b3f15725779e6bc56ef9842dde1f0663415a482 /phpBB/groupcp.php | |
parent | 4cc716e2f904f9ff92783b0c78eca38225607115 (diff) | |
download | forums-4c87b7480ec92755ccf30aaa39a2132b95693e9b.tar forums-4c87b7480ec92755ccf30aaa39a2132b95693e9b.tar.gz forums-4c87b7480ec92755ccf30aaa39a2132b95693e9b.tar.bz2 forums-4c87b7480ec92755ccf30aaa39a2132b95693e9b.tar.xz forums-4c87b7480ec92755ccf30aaa39a2132b95693e9b.zip |
Fixed wrong var name preventing group listing ...
git-svn-id: file:///svn/phpbb/trunk@1996 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/groupcp.php')
-rw-r--r-- | phpBB/groupcp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/groupcp.php b/phpBB/groupcp.php index d792067643..b50155c9d7 100644 --- a/phpBB/groupcp.php +++ b/phpBB/groupcp.php @@ -623,7 +623,7 @@ else if( $group_id ) } $group_members = $db->sql_fetchrowset($result); - $modgroup_pending_count = count($group_members); + $members_count = count($group_members); $db->sql_freeresult($result); $sql = "SELECT u.username, u.user_id, u.user_viewemail, u.user_posts, u.user_regdate, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_msnm |