1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

Fixes #3239 The array merge didn't work correctly by using the + operator

This commit is contained in:
Achim Ennenbach 2018-07-11 20:30:41 +02:00
parent a499d41481
commit ac61df7f07

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