aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-09 23:07:13 -0800
committerfriendica <info@friendica.com>2013-01-09 23:07:13 -0800
commitf0a08a05aedd8add7990f26c1a0d1894ddd06683 (patch)
tree1cb60f1955a0850b9ea110f9f5639ef3c8b71945 /include
parent8a930241a434f5058289bd8d014fd2bd6a4e91a0 (diff)
downloadvolse-hubzilla-f0a08a05aedd8add7990f26c1a0d1894ddd06683.tar.gz
volse-hubzilla-f0a08a05aedd8add7990f26c1a0d1894ddd06683.tar.bz2
volse-hubzilla-f0a08a05aedd8add7990f26c1a0d1894ddd06683.zip
fix the "personal" network filter and introduction notifications
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 56bcef559..88da4a0b9 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1035,20 +1035,10 @@ function conv_sort($arr,$order) {
foreach($parents as $i=>$_x)
$parents[$i]['children'] = get_item_children($arr, $_x);
- /*foreach($arr as $x) {
- if($x['id'] != $x['parent']) {
- $p = find_thread_parent_index($parents,$x);
- if($p !== false)
- $parents[$p]['children'][] = $x;
- }
- }*/
if(count($parents)) {
foreach($parents as $k => $v) {
if(count($parents[$k]['children'])) {
$parents[$k]['children'] = sort_item_children($parents[$k]['children']);
- /*$y = $parents[$k]['children'];
- usort($y,'sort_thr_created_rev');
- $parents[$k]['children'] = $y;*/
}
}
}
@@ -1059,8 +1049,6 @@ function conv_sort($arr,$order) {
$ret[] = $x;
if(count($x['children']))
add_children_to_list($x['children'], $ret);
- /*foreach($x['children'] as $y)
- $ret[] = $y;*/
}
}