aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2014-04-01 22:03:59 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2014-04-01 22:03:59 +0200
commit908057301c023a7d5efcd4aed0e8b8d4c793f15b (patch)
treef7e8c740c31d7b03bfbfd750892d0806f9c0ed04 /phpBB/includes
parent825077073bd173f43178e00da2d6f76c4c26b8a3 (diff)
downloadforums-908057301c023a7d5efcd4aed0e8b8d4c793f15b.tar
forums-908057301c023a7d5efcd4aed0e8b8d4c793f15b.tar.gz
forums-908057301c023a7d5efcd4aed0e8b8d4c793f15b.tar.bz2
forums-908057301c023a7d5efcd4aed0e8b8d4c793f15b.tar.xz
forums-908057301c023a7d5efcd4aed0e8b8d4c793f15b.zip
[ticket/7707] Add comma to last entry of arrays
PHPBB3-7707
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/auth.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/auth.php b/phpBB/includes/acp/auth.php
index 06f83b2775..5404efded3 100644
--- a/phpBB/includes/acp/auth.php
+++ b/phpBB/includes/acp/auth.php
@@ -650,8 +650,8 @@ class auth_admin extends \phpbb\auth\auth
$template->assign_block_vars('role_mask.users', array(
'USER_ID' => $row['user_id'],
'USERNAME' => get_username_string('username', $row['user_id'], $row['username']),
- 'U_PROFILE' => get_username_string('profile', $row['user_id'], $row['username']))
- );
+ 'U_PROFILE' => get_username_string('profile', $row['user_id'], $row['username']),
+ ));
}
$db->sql_freeresult($result);
}