Skip to content

Commit 88fd5ed

Browse files
author
Kristan Kenney
committed
Always sort services by name by default
1 parent 5532225 commit 88fd5ed

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

web/list/server/index.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,7 @@
122122
unset($output);
123123
exec (HESTIA_CMD."v-list-sys-services json", $output, $return_var);
124124
$data = json_decode(implode('', $output), true);
125-
if($_SESSION['userSortOrder'] == 'name'){
126-
ksort($data);
127-
}
125+
ksort($data);
128126

129127
unset($output);
130128

0 commit comments

Comments
 (0)