From 3d03c834d026ef43cce2a4de90cf2e70df5c3fdd Mon Sep 17 00:00:00 2001 From: cunha17 Date: Wed, 28 Oct 2015 18:37:44 -0200 Subject: [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 --- phpBB/includes/acp/acp_groups.php | 1 + 1 file changed, 1 insertion(+) 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); -- cgit v1.2.1