mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
Fixed misbehaviour in collapsing
This commit is contained in:
parent
2fc0fcdc18
commit
3b330510ea
1 changed files with 2 additions and 3 deletions
|
@ -467,6 +467,7 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
|
|||
if($items_seen == 1) {
|
||||
$firstcollapsed = true;
|
||||
}
|
||||
logger('Thread level: '. $thread_level .', items seen: '. $items_seen .', nb items: '. $nb_items .', body: ['. $item['body'] .']', LOGGER_DEBUG);
|
||||
if($thread_level > 2) {
|
||||
if($items_seen == $nb_items)
|
||||
$lastcollapsed = true;
|
||||
|
@ -584,9 +585,7 @@ function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $pr
|
|||
// Show children of children only if enabled
|
||||
if(count($item['children'])
|
||||
&& (($thread_level < 2) || get_config('system','thread_allow'))) {
|
||||
|
||||
$thread_level++;
|
||||
$item_result['children'] = prepare_threads_body($a, $item['children'], $cmnt_tpl, $page_writeable, $mode, $profile_owner, $thread_level);
|
||||
$item_result['children'] = prepare_threads_body($a, $item['children'], $cmnt_tpl, $page_writeable, $mode, $profile_owner, ($thread_level + 1));
|
||||
}
|
||||
$item_result['private'] = $item['private'];
|
||||
$item_result['toplevel'] = ($toplevelpost ? 'toplevel_item' : '');
|
||||
|
|
Loading…
Reference in a new issue