From 3d39352fd05c4e6e02ece9c0dd616e6b1b007783 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 28 Mar 2015 00:10:06 +0100 Subject: [PATCH] No more needed (for this fix) but maybe later. So I always only comment them out. Signed-off-by: Roland Haeder --- classes/Notice.php | 4 ++-- classes/Notice_tag.php | 10 +++++----- plugins/TagCloud/lib/tagcloudsection.php | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index f53563d48a..19ddf6533d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2695,7 +2695,7 @@ class Notice extends Managed_DataObject $profile = Profile::current(); // Is the general scope check okay and the user in logged in? - /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ',profile[]=' . gettype($profile)); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ',profile[]=' . gettype($profile)); if (($inScope === TRUE) && ($profile instanceof Profile)) { /* * Check scope, else a privacy leaks happens this way: @@ -2716,7 +2716,7 @@ class Notice extends Managed_DataObject * very political words. */ $inScope = $this->inScope($profile); - /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ' - After inScope() has been called.'); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ' - After inScope() has been called.'); } $tags = array(); diff --git a/classes/Notice_tag.php b/classes/Notice_tag.php index 7e0e070db1..45788285b5 100644 --- a/classes/Notice_tag.php +++ b/classes/Notice_tag.php @@ -97,7 +97,7 @@ class Notice_tag extends Managed_DataObject $notice = new Notice(); $notice->id = $this->notice_id; - /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->notice_id=' . $this->notice_id . ' - Calling find() ... fetch() ...'); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->notice_id=' . $this->notice_id . ' - Calling find() ... fetch() ...'); // Fetch notice if ((!$notice->find()) || (!$notice->fetch())) { @@ -105,7 +105,7 @@ class Notice_tag extends Managed_DataObject return FALSE; } - /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',notice->id=' . $notice->id . ',notice->scope=' . $notice->scope); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',notice->id=' . $notice->id . ',notice->scope=' . $notice->scope); // Is it private scope? if ($notice->isPrivateScope()) { @@ -115,17 +115,17 @@ class Notice_tag extends Managed_DataObject // 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 ...'); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] Not logged in (public view).'); $inScope = FALSE; } 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 ...'); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] profile->id=' . $profile->id . ' is not allowed to see this tag.'); $inScope = FALSE; } } // Return result - /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->weight=' . $this->weight . ',inScope=' . intval($inScope) . ' - EXIT!'); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->weight=' . $this->weight . ',inScope=' . intval($inScope) . ' - EXIT!'); return $inScope; } } diff --git a/plugins/TagCloud/lib/tagcloudsection.php b/plugins/TagCloud/lib/tagcloudsection.php index 4bcef0d994..1ff973b902 100644 --- a/plugins/TagCloud/lib/tagcloudsection.php +++ b/plugins/TagCloud/lib/tagcloudsection.php @@ -50,7 +50,7 @@ class TagCloudSection extends Section function showContent() { $tags = $this->getTags(); - /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] tags[]=' . gettype($tags)); + //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] tags[]=' . gettype($tags)); if (!$tags) { // TRANS: Content displayed in a tag cloud section if there are no tags. -- 2.39.5