X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/7abc48b38fa2c2227c5c6dd772bd159c75548f64..6f7977b1751e50e24f1302ef8630a7726182fe53:/login/list.php diff --git a/login/list.php b/login/list.php index 0d9eec2..7872bd6 100644 --- a/login/list.php +++ b/login/list.php @@ -8,11 +8,19 @@ foreach ($users as $col => $userdir) { $users[$col] = new User($userdir); } -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['order'])) { + $ordercol = $Place['order']; + $order = array_map(function ($row) use ($ordercol) { + return $row->$ordercol; + }, $users); +# $order = array_column($users, $ordercol); #TODO php7 simplification + if ($ordercol == 'seen') { + array_multisort($order, SORT_DESC, SORT_NUMERIC, $users); + $users = array_intersect_key($users, array_filter($order)); + } + else { + array_multisort($order, SORT_ASC, SORT_NATURAL, $users); + } } if (isset($Place['n'])) {