1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +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
commit 4c692150fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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')
{