summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-06-28 12:47:14 +0200
committerErich Eckner <git@eckner.net>2019-06-28 12:47:14 +0200
commit5447bb29af07d712dc32d182b8c25d63ca477bce (patch)
tree760bd84afb0ac11eda6d549b89eb3d140ffb89f3
parent5ca407440565a9f1238691e794b53eb083de0537 (diff)
downloadarchweb32-5447bb29af07d712dc32d182b8c25d63ca477bce.tar.xz
buildmaster/build-list.php: order by blocks by default
-rw-r--r--buildmaster/build-list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildmaster/build-list.php b/buildmaster/build-list.php
index e8b8b86..a574d39 100644
--- a/buildmaster/build-list.php
+++ b/buildmaster/build-list.php
@@ -244,7 +244,7 @@ $columns = array(
);
if (!array_key_exists("sort", $_GET))
- $_GET["sort"] = "trials";
+ $_GET["sort"] = "blocks";
if (substr($_GET["sort"],0,1) == "-") {
$direction = " DESC";