diff options
author | CiaranG <ciaran@ciarang.com> | 2008-09-24 05:20:31 -0400 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2008-09-24 05:20:31 -0400 |
commit | 411db90e25a4ae2aa77a867da943d14769b405a4 (patch) | |
tree | 5fabf086eade3699868f8ab461de829331c731ab /actions | |
parent | 0d4d0c791195b4990f663997dc1ecdce7bc2e679 (diff) |
Fix problem with tags in different locales (Ticket #679)
darcs-hash:20080924092031-f6e2c-8def504406ee1a13273bb67faafe3a3327ae4a44.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/tag.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/tag.php b/actions/tag.php index 6796cd34f..75bf6c8bf 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -98,9 +98,9 @@ class TagAction extends StreamAction { #Add the aggregated columns... $tags->selectAdd('max(notice_id) as last_notice_id'); if(common_config('db','type')=='pgsql') { - $calc='sum(exp(-extract(epoch from (now()-created))/%f)) as weight'; + $calc='sum(exp(-extract(epoch from (now()-created))/%s)) as weight'; } else { - $calc='sum(exp(-(now() - created)/%f)) as weight'; + $calc='sum(exp(-(now() - created)/%s)) as weight'; } $tags->selectAdd(sprintf($calc, common_config('tag', 'dropoff'))); $tags->groupBy('tag'); |