diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-19 17:43:50 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-04-19 17:43:50 -0700 |
commit | 2254262cf0bc89fb671b71fafde795a6b596e17f (patch) | |
tree | 3938bad0c68a5d6d6a2a96b6aecf4c146ad2f136 /include | |
parent | 92b08f1f07a25976342dc885331ecb1531e256aa (diff) | |
download | volse-hubzilla-2254262cf0bc89fb671b71fafde795a6b596e17f.tar.gz volse-hubzilla-2254262cf0bc89fb671b71fafde795a6b596e17f.tar.bz2 volse-hubzilla-2254262cf0bc89fb671b71fafde795a6b596e17f.zip |
code booboo may have degraded the performance of the Trending tag query more than necessary
Diffstat (limited to 'include')
-rw-r--r-- | include/taxonomy.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php index e8d33986f..46d95458c 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -312,7 +312,8 @@ function article_tagadelic($uid, $count = 0, $authors = '', $owner = '', $flags function pubtagblock($net,$site,$limit,$recent = 0,$safemode = 1, $type = TERM_HASHTAG) { $o = ''; - $r = pub_tagadelic($net,$site,$limit,$since,$safemode,$type); + $r = pub_tagadelic($net,$site,$limit,$recent,$safemode,$type); + $link = z_root() . '/pubstream'; if($r) { |