]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Needed to add notice_id to selected fields ... :-(
authorRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:53:57 +0000 (23:53 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:06 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
plugins/TagCloud/lib/attachmenttagcloudsection.php
plugins/TagCloud/lib/grouptagcloudsection.php
plugins/TagCloud/lib/inboxtagcloudsection.php
plugins/TagCloud/lib/personaltagcloudsection.php
plugins/TagCloud/lib/publictagcloudsection.php

index 2c8fc5ee1a89c3da758924bc795f6e118a8408cb..5a8614ebb1bb9f3d394398992d473d3ff81d8cc3 100644 (file)
@@ -75,7 +75,7 @@ class AttachmentTagCloudSection extends TagCloudSection
     function getTags()
     {
         $notice_tag = new Notice_tag;
-        $query = 'select tag,count(tag) as weight from notice_tag join file_to_post on (notice_tag.notice_id=post_id) join notice on notice_id = notice.id where file_id=' . $notice_tag->escape($this->out->attachment->id) . ' group by tag order by weight desc';
+        $query = 'select tag, notice_id, count(tag) as weight from notice_tag join file_to_post on (notice_tag.notice_id=post_id) join notice on notice_id = notice.id where file_id=' . $notice_tag->escape($this->out->attachment->id) . ' group by tag order by weight desc';
         $notice_tag->query($query);
         return $notice_tag;
     }
index 5ed14560ce7a6efde2db81f3d91f24c3738805d5..68af4d307446396b9842a64a46c424770bbe4936 100644 (file)
@@ -76,7 +76,7 @@ class GroupTagCloudSection extends TagCloudSection
 
         $namestring = implode(',', $quoted);
 
-        $qry = 'SELECT notice_tag.tag, '.
+        $qry = 'SELECT notice_tag.tag, notice_tag.notice_id, '.
           $weightexpr . ' as weight ' .
           'FROM notice_tag JOIN notice ' .
           'ON notice_tag.notice_id = notice.id ' .
index 4268ee48548722093c6f67a2a799b9e891b97cdd..43e034b57fa7bd2fca450fab91e91ab9d0f430df 100644 (file)
@@ -70,7 +70,7 @@ class InboxTagCloudSection extends TagCloudSection
             $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
             // @fixme should we use the cutoff too? Doesn't help with indexing per-user.
 
-            $qry = 'SELECT notice_tag.tag, '.
+            $qry = 'SELECT notice_tag.tag, notice_tag.notice_id, '.
                 $weightexpr . ' as weight ' .
                 'FROM notice_tag JOIN notice ' .
                 'ON notice_tag.notice_id = notice.id ' .
index e46aa2d662ed10eda3f1f3bf27c135ad8581ac50..0aa268bb30a7f7d2a9150ab3b30b399904b7381e 100644 (file)
@@ -59,7 +59,7 @@ class PersonalTagCloudSection extends TagCloudSection
         $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
         // @fixme should we use the cutoff too? Doesn't help with indexing per-user.
 
-        $qry = 'SELECT notice_tag.tag, '.
+        $qry = 'SELECT notice_tag.tag, notice_tag.notice_id, '.
           $weightexpr . ' as weight ' .
           'FROM notice_tag JOIN notice ' .
           'ON notice_tag.notice_id = notice.id ' .
index bf88091a9020ab2324f018edb6e15c36ffa60af5..1ba4fa0cf4a1b564dde8f74c4ad14399787f1e2e 100644 (file)
@@ -77,7 +77,7 @@ class PublicTagCloudSection extends TagCloudSection
                 $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
                 // @fixme should we use the cutoff too? Doesn't help with indexing per-user.
 
-                $qry = 'SELECT notice_tag.tag, '.
+                $qry = 'SELECT notice_tag.tag, notice_tag.notice_id, '.
                     $weightexpr . ' as weight ' .
                     'FROM notice_tag JOIN notice ' .
                     'ON notice_tag.notice_id = notice.id ' .