summaryrefslogtreecommitdiff
path: root/feeds
diff options
context:
space:
mode:
Diffstat (limited to 'feeds')
-rw-r--r--feeds/index.php5
1 files changed, 4 insertions, 1 deletions
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())