fetch() must work to get this check passed.
authorRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:49:18 +0000 (23:49 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:05 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
classes/Notice_tag.php

index 17882c60d832386fa6c6994a36ade8bdce8239aa..8e1c4ec1289d66a147632d9c156aa731fb2bbdb2 100644 (file)
@@ -95,8 +95,16 @@ class Notice_tag extends Managed_DataObject
 
         // 1) Get notice object and set id
         $notice = new Notice();
-        $notice->id    = $this->notice_id;
-        $notice->scope = $this->scope;
+        $notice->id = $this->notice_id;
+
+        /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->notice_id=' . $this->notice_id . ' - Calling fetch() ...');
+
+        // Fetch notice
+        if (!$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);
 
         // Is it private scope?