mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
Merge pull request #7901 from annando/disable-smart-threading
Changed the option to enable the smart threading with the option to disable this
This commit is contained in:
commit
4403aeeda5
4 changed files with 17 additions and 17 deletions
|
@ -1479,7 +1479,7 @@ function conv_sort(array $item_list, $order)
|
|||
$parents[$i]['children'] = sort_item_children($parents[$i]['children']);
|
||||
}
|
||||
|
||||
if (PConfig::get(local_user(), 'system', 'smart_threading', 0)) {
|
||||
if (!PConfig::get(local_user(), 'system', 'no_smart_threading', 0)) {
|
||||
foreach ($parents as $i => $parent) {
|
||||
$parents[$i] = smart_flatten_conversation($parent);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue