X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fthreads.php;h=df0f8ee1de5a24e5577be553a4871226573c312d;hb=d49325d177cf03b97df250ca3cb081421c541049;hp=8dfb41252573c47f6c45f6a6805a2de722580876;hpb=8ab90f02c36a4a9cf17bdb6521b6cf8a2868deca;p=friendica.git diff --git a/include/threads.php b/include/threads.php index 8dfb412525..df0f8ee1de 100644 --- a/include/threads.php +++ b/include/threads.php @@ -23,7 +23,7 @@ function add_thread($itemid, $onlyshadow = false) { } /** - * @brief Add a shadow entry for a given item id + * @brief Add a shadow entry for a given item id that is a thread starter * * We store every public item entry additionally with the user id "0". * This is used for the community page and for the search. @@ -113,11 +113,29 @@ function add_shadow_thread($itemid) { } } +/** + * @brief Add a shadow entry for a given item id that is a comment + * + * This function does the same like the function above - but for comments + * + * @param integer $itemid Item ID that should be added + */ function add_shadow_entry($itemid) { $items = q("SELECT * FROM `item` WHERE `id` = %d", intval($itemid)); + + if (!dbm::is_result($items)) { + return; + } + $item = $items[0]; + // Is it a toplevel post? + if ($item['id'] == $item['parent']) { + add_shadow_thread($itemid); + return; + } + // Is this a shadow entry? if ($item['uid'] == 0) return;