diff options
Diffstat (limited to 'packages/index.php')
-rw-r--r-- | packages/index.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/packages/index.php b/packages/index.php index e0f3a3b..09a9b6e 100644 --- a/packages/index.php +++ b/packages/index.php @@ -353,11 +353,14 @@ if (count($exact_matches) > 0) { <table class="results"> <thead> <tr> - <th>Arch</th> - <th>Repo</th> - <th>Name</th> - <th>Version</th> - <th>Bugs</th> +<?php + + foreach ($sorts as $get => $sort) { + print " <th>\n"; + print " ".$sort["label"]."\n"; + print " </th>\n"; + } +?> </tr> </thead> <tbody> |