mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-17 21:21:28 +00:00
UNDO: tag cloud shows top 100 instead of top 50
This commit is contained in:
@@ -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 100";
|
||||
GROUP BY tag_name ORDER BY count DESC LIMIT 50";
|
||||
|
||||
$result = db_query($link, $query);
|
||||
|
||||
|
||||
@@ -416,7 +416,7 @@
|
||||
print "<div id=\"infoBoxTitle\">".__('Tag Cloud')."</div>";
|
||||
print "<div class=\"infoBoxContents\">";
|
||||
|
||||
print "Showing top 100 most popular tags (<a
|
||||
print "Showing top 50 most popular tags (<a
|
||||
href='javascript:toggleTags(true)'>show all</a>):<br/>";
|
||||
|
||||
print "<div class=\"tagCloudContainer\">";
|
||||
|
||||
Reference in New Issue
Block a user