diff options
-rw-r--r-- | js/pkgsubmit.js | 4 | ||||
-rw-r--r-- | test_index.php | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/js/pkgsubmit.js b/js/pkgsubmit.js index 3b09299..19e9382 100644 --- a/js/pkgsubmit.js +++ b/js/pkgsubmit.js @@ -107,14 +107,14 @@ function build_log_files_list(ev) { { class: "build-files-list", id: elId, - html: '<td colspan="5">loading</td>' + html: '<td colspan="4">loading</td>' } )); $.get( "/log_files.php", {"k": $(this).attr("href")}, function (data) { - $("#" + elId).html('<td colspan="5">' + data + '</td>'); + $("#" + elId).html('<td colspan="4">' + data + '</td>'); } ); } else { diff --git a/test_index.php b/test_index.php index e83ddce..1d595ae 100644 --- a/test_index.php +++ b/test_index.php @@ -202,7 +202,6 @@ $tmpl = <<<T <span class="timeinfo">%s</span></td> <td>%s <span class="media">%s/%s</span></td> - <td class="status-box"></td> T; if ($total > 0) { |