aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-17 22:56:09 -0700
committerfriendica <info@friendica.com>2013-09-17 22:56:09 -0700
commitb0a4f1b30ab9bf5de2182b475ab5639f63a8e53f (patch)
treea8a0d5ba53c32800e09dbe02c41bc5d152387515 /include/taxonomy.php
parentf7acc94bfedae6f23e0bc883541ca23132e95a06 (diff)
downloadvolse-hubzilla-b0a4f1b30ab9bf5de2182b475ab5639f63a8e53f.tar.gz
volse-hubzilla-b0a4f1b30ab9bf5de2182b475ab5639f63a8e53f.tar.bz2
volse-hubzilla-b0a4f1b30ab9bf5de2182b475ab5639f63a8e53f.zip
fix sql for directory tagcloud
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r--include/taxonomy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php
index b8180f7c8..30eb08f65 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -165,7 +165,7 @@ function dir_tagadelic($count = 0) {
// Fetch tags
$r = q("select xtag_term, count(xtag_term) as total from xtag
- group by term order by total desc %s",
+ group by xtag_term order by total desc %s",
((intval($count)) ? "limit $count" : '')
);