diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-28 21:16:25 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-28 21:16:25 +0000 |
commit | fbb4dc69c6789a04f8464afba4ea625feb880731 (patch) | |
tree | 47c746b9115d30c4ac3e686022fa497238ac68eb /include/items.php | |
parent | c8852d455e77624baf9e6ac852c1176f45462e70 (diff) | |
parent | d0bf45972135bde9ac39a06c6fa5eb64d075a225 (diff) | |
download | volse-hubzilla-fbb4dc69c6789a04f8464afba4ea625feb880731.tar.gz volse-hubzilla-fbb4dc69c6789a04f8464afba4ea625feb880731.tar.bz2 volse-hubzilla-fbb4dc69c6789a04f8464afba4ea625feb880731.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/include/items.php b/include/items.php index 6b9ecdd48..c303801e7 100755 --- a/include/items.php +++ b/include/items.php @@ -1427,22 +1427,8 @@ function item_store($arr,$force_parent = false) { $arr['item_private'] = 0; } else { - - // Allow one to see reply tweets from status.net even when - // we don't have or can't see the original post. - - if($force_parent) { - logger('item_store: $force_parent=true, reply converted to top-level post.'); - $parent_id = 0; - $arr['parent_mid'] = $arr['mid']; - $arr['flags'] = $arr['flags'] | ITEM_THREAD_TOP; - } - else { - logger('item_store: item parent was not found - ignoring item'); - return 0; - } - - $parent_deleted = 0; + logger('item_store: item parent was not found - ignoring item'); + return 0; } } |