index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | feeds/index.php | 5 |
diff --git a/feeds/index.php b/feeds/index.php index 8c0f1a0..cce5a57 100644 --- a/feeds/index.php +++ b/feeds/index.php @@ -9,7 +9,10 @@ require_once BASE . "/lib/format.php"; print_header("RSS - Feeds"); $result = mysql_run_query( - "SELECT `architectures`.`name` FROM `architectures` ORDER BY `name`" + "SELECT DISTINCT `architectures`.`name` FROM `architectures`" . + mysql_join_architectures_repositories() . + " WHERE `repositories`.`is_on_master_mirror`" . + " ORDER BY `name`" ); $archs = array(); while ($row = $result -> fetch_assoc()) |