diff --git a/front/systeminfo.php b/front/systeminfo.php index 653ee5b4..dd973b3b 100644 --- a/front/systeminfo.php +++ b/front/systeminfo.php @@ -470,10 +470,10 @@ for ($x = 0; $x < sizeof($net_interfaces); $x++) { if ($net_interfaces_rx[$x] == 0) {$temp_rx = 0;} else { $temp_rx = number_format(round(($net_interfaces_rx[$x] / 1024 / 1024), 2), 2, ',', '.');} if ($net_interfaces_tx[$x] == 0) {$temp_tx = 0;} else { $temp_tx = number_format(round(($net_interfaces_tx[$x] / 1024 / 1024), 2), 2, ',', '.');} echo '
'; - echo '
' . $interface_name . '
'; - echo '
' . $interface_ip_arr[1] . '
'; - echo '
RX:
' . $temp_rx . ' MB
'; - echo '
TX:
' . $temp_tx . ' MB
'; + echo '
' . $interface_name . '
'; + echo '
' . $interface_ip_arr[1] . '
'; + echo '
RX:
' . $temp_rx . ' MB
'; + echo '
TX:
' . $temp_tx . ' MB
'; echo '
'; }