aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_attachments.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-04-02 09:46:54 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-04-02 09:46:54 +0200
commit5b61ac06cbb065d0e5d6c0c108ead96cea0c3333 (patch)
tree0eb30c021770286205be0489c3412a8613b8965d /phpBB/includes/acp/acp_attachments.php
parent3f5a873e4cff0fd6f9ab2dd4fad1179009abed4b (diff)
downloadforums-5b61ac06cbb065d0e5d6c0c108ead96cea0c3333.tar
forums-5b61ac06cbb065d0e5d6c0c108ead96cea0c3333.tar.gz
forums-5b61ac06cbb065d0e5d6c0c108ead96cea0c3333.tar.bz2
forums-5b61ac06cbb065d0e5d6c0c108ead96cea0c3333.tar.xz
forums-5b61ac06cbb065d0e5d6c0c108ead96cea0c3333.zip
[ticket/14577] Do not calculate size of array in for loop
For loops that modify the size of the looped arrays were obviously not changed. PHPBB3-14577
Diffstat (limited to 'phpBB/includes/acp/acp_attachments.php')
-rw-r--r--phpBB/includes/acp/acp_attachments.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php
index 8e8ace8337..816387967a 100644
--- a/phpBB/includes/acp/acp_attachments.php
+++ b/phpBB/includes/acp/acp_attachments.php
@@ -1426,7 +1426,7 @@ class acp_attachments
$row['group_name'] = $user->lang['NOT_ASSIGNED'];
$group_name[] = $row;
- for ($i = 0; $i < sizeof($group_name); $i++)
+ for ($i = 0, $groups_size = sizeof($group_name); $i < $groups_size; $i++)
{
if ($default_group === false)
{