X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FNotice_tag.php;h=d921b07594c4c99b9343ceb8bc376879466f64f9;hb=76babcb430e6fae9254541f5a26483e576dfe5f3;hp=6ee30d0d5a418bf6ff771c01cf145b41deda14e8;hpb=b15f5f0cafc08c9b63090c5b4f7494fca0634238;p=quix0rs-gnu-social.git diff --git a/classes/Notice_tag.php b/classes/Notice_tag.php index 6ee30d0d5a..d921b07594 100644 --- a/classes/Notice_tag.php +++ b/classes/Notice_tag.php @@ -96,15 +96,15 @@ 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->findOQ()) || (!$notice->fetch())) { + if ((!$notice->find()) || (!$notice->fetch())) { // No longer valid, so better don't allow to see it 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()) { @@ -114,17 +114,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; } }