aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-03-27 19:02:01 -0700
committerfriendica <info@friendica.com>2013-03-27 19:02:01 -0700
commit8148b7c32f160cbe2cdc37e7271ac62aa2133b7c (patch)
treeec29500cc9a2317a9e21a4c4a6874f15da6c846a /include/items.php
parentca605a8c838b28e89c611e1063456afa82e2fb33 (diff)
downloadvolse-hubzilla-8148b7c32f160cbe2cdc37e7271ac62aa2133b7c.tar.gz
volse-hubzilla-8148b7c32f160cbe2cdc37e7271ac62aa2133b7c.tar.bz2
volse-hubzilla-8148b7c32f160cbe2cdc37e7271ac62aa2133b7c.zip
update manage table and some documentation
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php18
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;
}
}