Просмотр исходного кода

Adding border="1" for Apache process table

It was impossible to see where what column begins...
dpeca 9 лет назад
Родитель
Сommit
e9ca075dd7
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      web/list/server/index.php

+ 1 - 0
web/list/server/index.php

@@ -65,6 +65,7 @@ if (isset($_GET['web'])) {
     include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/list_server_info.html');
     exec (VESTA_CMD.'v-list-sys-web-status', $output, $return_var);
     foreach($output as $file) {
+        $file=str_replace('border="0"', 'border="1"', $file);
         echo $file . "\n";
     }
     echo "    </pre>\n</body>\n</html>\n";