1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Merge pull request #3265 from SimSync/fix_3239

Fixes #3239 The array merge didn't work correctly by using the + operator
This commit is contained in:
Cameron
2018-07-11 11:40:50 -07:00
committed by GitHub

View File

@@ -422,8 +422,9 @@ class user_dashboard // plugin-folder + '_url'
<tbody>";
$online = $ol->userList() + $ol->guestList();
// Fixes #3239: The array merge didn't work correctly by using the + operator
$online = $ol->userList();
$online = array_merge($online, $ol->guestList());
if($data == 'count')
{