X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fgrouptagcloudsection.php;h=f1106cc7bf9caeb3151595e5e2d5b022ea8427c5;hb=28fecf70b998943606a556d7a98a0406dba67893;hp=091cf48457ce0bdb9330d62d78b9ff7363ef1944;hpb=9d87313eaebe8240393ac300a435f3b1332c8849;p=quix0rs-gnu-social.git diff --git a/lib/grouptagcloudsection.php b/lib/grouptagcloudsection.php index 091cf48457..f1106cc7bf 100644 --- a/lib/grouptagcloudsection.php +++ b/lib/grouptagcloudsection.php @@ -58,11 +58,8 @@ class GroupTagCloudSection extends TagCloudSection function getTags() { - if (common_config('db', 'type') == 'pgsql') { - $weightexpr='sum(exp(-extract(epoch from (now() - notice_tag.created)) / %s))'; - } else { - $weightexpr='sum(exp(-(now() - notice_tag.created) / %s))'; - } + $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff')); + // @fixme should we use the cutoff too? Doesn't help with indexing per-group. $names = $this->group->getAliases(); @@ -99,7 +96,6 @@ class GroupTagCloudSection extends TagCloudSection $tag = Memcached_DataObject::cachedQuery('Notice_tag', sprintf($qry, - common_config('tag', 'dropoff'), $this->group->id, $namestring), 3600);