|
|
@@ -8,9 +8,9 @@ include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
// Data
|
|
|
exec (HESTIA_CMD."v-list-web-domains ".escapeshellarg($user)." 'json'", $output, $return_var);
|
|
|
$data = json_decode(implode('', $output), true);
|
|
|
-if($_SESSION['userSortOrder'] == 'name'){
|
|
|
+if ($_SESSION['userSortOrder'] == 'name') {
|
|
|
ksort($data);
|
|
|
-}else{
|
|
|
+} else {
|
|
|
$data = array_reverse($data,true);
|
|
|
}
|
|
|
$ips = json_decode(shell_exec(HESTIA_CMD.'v-list-sys-ips json'), true);
|