summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-09-10 14:59:24 +0000
committerRomain d'Alverny <rda@mageia.org>2012-09-10 14:59:24 +0000
commite875c365c3b171e6725305df35c47de530964ac0 (patch)
treef96d9b5f47e229f3c5525ec9f8f1cde33567ba08
parent0adad283500d22dcd2ce5c32d969dbcbb699e7f5 (diff)
downloadpkgsubmit-e875c365c3b171e6725305df35c47de530964ac0.tar
pkgsubmit-e875c365c3b171e6725305df35c47de530964ac0.tar.gz
pkgsubmit-e875c365c3b171e6725305df35c47de530964ac0.tar.bz2
pkgsubmit-e875c365c3b171e6725305df35c47de530964ac0.tar.xz
pkgsubmit-e875c365c3b171e6725305df35c47de530964ac0.zip
remove unneeded column for status
-rw-r--r--js/pkgsubmit.js4
-rw-r--r--test_index.php1
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) {