1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 09:01:28 +00:00

tag cloud shows top 100 instead of top 50

This commit is contained in:
Andrew Dolgov
2007-05-17 13:00:11 +01:00
parent 0979b696e4
commit 458cfa53e0
2 changed files with 2 additions and 2 deletions

View File

@@ -3859,7 +3859,7 @@
$query = "SELECT tag_name, COUNT(post_int_id) AS count
FROM ttrss_tags WHERE owner_uid = ".$_SESSION["uid"]."
GROUP BY tag_name ORDER BY count DESC LIMIT 50";
GROUP BY tag_name ORDER BY count DESC LIMIT 100";
$result = db_query($link, $query);