X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/07b86e486dc9afa2f10ba50c85e2c1b108128892..a332183ffe74a1580779a5eeeeb7dbe02a398075:/login/list.php diff --git a/login/list.php b/login/list.php index 4883da6..0d9eec2 100644 --- a/login/list.php +++ b/login/list.php @@ -12,6 +12,7 @@ if (@$Place['order'] == 'seen') { $order = array_map(function ($col) { return $col->seen; }, $users); # $order = array_column($users, 'seen'); #TODO php7 simplification array_multisort($order, SORT_DESC, SORT_NUMERIC, $users); + $users = array_intersect_key($users, array_filter($order)); } if (isset($Place['n'])) { @@ -56,8 +57,9 @@ foreach ($users as $user) { # continue to default default: if ($user->admin) { - $name .= ' (beheerder)'; + $name .= ' 🔧'; } + $name = "
$name
"; } print "
  • $name
  • \n";