fix regression bug in 'incorrect top-5 customers' sorting in traffic-overview which leads to incorrect customer-links due to wrong indexing in the array; fixes #1236
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -141,7 +141,7 @@ class Traffic
|
|||||||
}
|
}
|
||||||
|
|
||||||
// sort users by total traffic
|
// sort users by total traffic
|
||||||
usort($users, function ($user_a, $user_b) {
|
uasort($users, function ($user_a, $user_b) {
|
||||||
if ($user_a['total'] == $user_b['total']) {
|
if ($user_a['total'] == $user_b['total']) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user