mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
Fixes #3239 The array merge didn't work correctly by using the + operator
This commit is contained in:
@@ -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')
|
||||
{
|
||||
|
Reference in New Issue
Block a user