]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Opps, PEAR sucks. Need to call find() before fetch() ... :-(
authorRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:56:27 +0000 (23:56 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:06 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
classes/Notice_tag.php

index 8e1c4ec1289d66a147632d9c156aa731fb2bbdb2..24404aea58f26794e2828672e707e612c8c37f2a 100644 (file)
@@ -97,10 +97,10 @@ 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 fetch() ...');
+        /* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->notice_id=' . $this->notice_id . ' - Calling find() ... fetch() ...');
 
         // Fetch notice
-        if (!$notice->fetch()) {
+        if ((!$notice->findOQ()) || (!$notice->fetch())) {
             // No longer valid, so better don't allow to see it
             return FALSE;
         }