diff options
author | cunha17 <cunha17@gmail.com> | 2015-10-28 18:37:44 -0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-01-25 13:13:05 +0100 |
commit | 3d03c834d026ef43cce2a4de90cf2e70df5c3fdd (patch) | |
tree | 348962f0cd9059a890414d32a3dc328634afb990 | |
parent | b7db2717b29a95f94eb3f2e8e7ce0c7f597e9bc8 (diff) | |
download | forums-3d03c834d026ef43cce2a4de90cf2e70df5c3fdd.tar forums-3d03c834d026ef43cce2a4de90cf2e70df5c3fdd.tar.gz forums-3d03c834d026ef43cce2a4de90cf2e70df5c3fdd.tar.bz2 forums-3d03c834d026ef43cce2a4de90cf2e70df5c3fdd.tar.xz forums-3d03c834d026ef43cce2a4de90cf2e70df5c3fdd.zip |
[ticket/14253] Show group requests pending aproval at the ACP groups summary
Currenty, you need to open each existing group in ACP to know if there are
pending group requests or not. Doing so is really boring and annoying... :/
This patch displays the number of pending group requests at the ACP groups
summary page.
PHPBB3-14253
-rw-r--r-- | phpBB/includes/acp/acp_groups.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_groups.php b/phpBB/includes/acp/acp_groups.php index 1f965b334c..223dd06987 100644 --- a/phpBB/includes/acp/acp_groups.php +++ b/phpBB/includes/acp/acp_groups.php @@ -930,6 +930,7 @@ class acp_groups // used for easy access to the data within a group $cached_group_data[$type][$row['group_id']] = $row; $cached_group_data[$type][$row['group_id']]['total_members'] = 0; + $cached_group_data[$type][$row['group_id']]['pending_members'] = 0; } $db->sql_freeresult($result); |