mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 04:38:27 +01:00
Fixes #3239 The array merge didn't work correctly by using the + operator
This commit is contained in:
parent
a499d41481
commit
ac61df7f07
@ -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')
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user