Grrr, not fixed. So adding debug lines.
authorRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:22:34 +0000 (23:22 +0100)
committerRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:22:34 +0000 (23:22 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
actions/publictagcloud.php

index 1f169cfc5f71afe7ca462491e689989aa0615319..ddbee053880a6248edd066515db0d49010f433c5 100644 (file)
@@ -141,6 +141,7 @@ class PublictagcloudAction extends Action
                 $notice = new Notice();
                 $notice->id    = $tags->notice_id;
                 $notice->scope = $tags->scope;
+                /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] tags->tag=' . $tags->tag . ',notice->id=' . $notice->id . ',notice->scope=' . $notice->scope);
 
                 // Is it private scope?
                 if ($notice->isPrivateScope()) {
@@ -150,13 +151,16 @@ class PublictagcloudAction extends Action
                     // Is the profile not set?
                     if (!$profile instanceof Profile) {
                         // Public viewer shall not see a tag from a private dent (privacy leak)
+                        /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] Not logged in, skipping ...');
                         continue;
                     } elseif (!$notice->inScope($profile)) {
                         // Current profile is not in scope (not allowed to see) of notice
+                        /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] profile->id=' . $profile->id . ' is not allowed to see this tag, skipping ...');
                         continue;
                     }
                 }
 
+                /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] tags->tag=' . $tags->tag . ',tags->weight=' . $tags->weight . ' - Added!');
                 $tw[$tags->tag] = $tags->weight;
                 $sum += $tags->weight;
             }