From: Roland Haeder Date: Fri, 27 Mar 2015 22:22:34 +0000 (+0100) Subject: Grrr, not fixed. So adding debug lines. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=89b078966c730ca9b6a1579acdd576edce12adbc;hp=a2d1c18f846d7e589eb6e8e11fd67927eb89e383;p=quix0rs-gnu-social.git Grrr, not fixed. So adding debug lines. Signed-off-by: Roland Haeder --- diff --git a/plugins/TagCloud/actions/publictagcloud.php b/plugins/TagCloud/actions/publictagcloud.php index d2f5a3d640..4d8c07edea 100644 --- a/plugins/TagCloud/actions/publictagcloud.php +++ b/plugins/TagCloud/actions/publictagcloud.php @@ -139,6 +139,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()) { @@ -148,13 +149,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; }