diff options
author | friendica <info@friendica.com> | 2013-09-17 22:56:09 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-17 22:56:09 -0700 |
commit | b0a4f1b30ab9bf5de2182b475ab5639f63a8e53f (patch) | |
tree | a8a0d5ba53c32800e09dbe02c41bc5d152387515 /include/taxonomy.php | |
parent | f7acc94bfedae6f23e0bc883541ca23132e95a06 (diff) | |
download | volse-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.php | 2 |
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" : '') ); |