summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-29 17:45:02 +0100
committerAndrew Dolgov <[email protected]>2005-12-29 17:45:02 +0100
commit24b181141c1b7fb74e0ab0009da4802596e25752 (patch)
tree047b0c556e5b45d04df62cad27d263cea6fc73a1
parentf9cb39acafce8ec59e028f7060c32c0fe838a59d (diff)
feed browser: fix sort
-rw-r--r--backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 7b0594660..f848ac531 100644
--- a/backend.php
+++ b/backend.php
@@ -1511,7 +1511,7 @@
$result = db_query($link, "SELECT feed_url,count(id) AS subscribers
FROM ttrss_feeds WHERE auth_login = '' AND auth_pass = ''
- GROUP BY feed_url ORDER BY subscribers LIMIT 50");
+ GROUP BY feed_url ORDER BY subscribers DESC LIMIT 50");
print "<ul class='browseFeedList' id='browseFeedList'>";