create_tags_from_item($current_post);
create_files_from_item($current_post);
- /**
- * If this is now the last-child, force all _other_ children of this parent to *not* be last-child
- * It is done after the transaction to avoid dead locks.
- */
-
+ // If this is now the last-child, force all _other_ children of this parent to *not* be last-child
+ // It is done after the transaction to avoid dead locks.
if ($arr['last-child']) {
$r = q("UPDATE `item` SET `last-child` = 0 WHERE `parent-uri` = '%s' AND `uid` = %d AND `id` != %d",
dbesc($arr['uri']),
}
/**
- * @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.
}
}
+/**
+ * @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));