summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-05-17 13:00:11 +0100
committerAndrew Dolgov <[email protected]>2007-05-17 13:00:11 +0100
commit458cfa53e0c2f7da71474d1852a5d96f6c565fd9 (patch)
tree15496d29fef2944cf62c8f7a5b7f15c69208ba46
parent0979b696e4d770f5461057f406dfe8a8f3d3d48c (diff)
tag cloud shows top 100 instead of top 50
-rw-r--r--functions.php2
-rw-r--r--modules/popup-dialog.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index 0bcbc5e47..46c84509e 100644
--- a/functions.php
+++ b/functions.php
@@ -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);
diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index 3011f8c1b..144c09967 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -416,7 +416,7 @@
print "<div id=\"infoBoxTitle\">".__('Tag Cloud')."</div>";
print "<div class=\"infoBoxContents\">";
- print "Showing top 50 most popular tags (<a
+ print "Showing top 100 most popular tags (<a
href='javascript:toggleTags(true)'>show all</a>):<br/>";
print "<div class=\"tagCloudContainer\">";