]> 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 Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:53:57 +0000 (23:53 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
lib/attachmenttagcloudsection.php
lib/grouptagcloudsection.php
lib/inboxtagcloudsection.php
lib/personaltagcloudsection.php
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 d19f76366d6f09d072f8f04218d83d0c4f465d54..fbc137041fedfb9b8979ff6db79954e2dcce68ff 100644 (file)
@@ -72,7 +72,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 c861c4f57f90fb6ceee594b719d2be842cc34acc..957def042c60eee31d29c71cd2a0908df5d42766 100644 (file)
@@ -61,7 +61,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 1d9dd0e75124900db1e57067a2ccac01af4420f6..082c455259f79d16c9f87a30804ebf05ebd106ae 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 ' .