]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/tag.php
add 'invite-only' mode for registration
[quix0rs-gnu-social.git] / actions / tag.php
index 177aee603a785d3f13c154aaa61e51c99b30ccce..75bf6c8bfb76267ed56850926e754f689ecfd4dc 100644 (file)
@@ -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');
@@ -160,6 +160,9 @@ class TagAction extends StreamAction {
        function show_notices($tag) {
 
                $cnt = 0;
+               
+               $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
+
                $notice = Notice_tag::getStream($tag, (($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
 
                if ($notice) {