]> git.mxchange.org Git - friendica.git/blobdiff - include/conversation.php
Changed the option to enable the smart threading with the option to disable this
[friendica.git] / include / conversation.php
index c1f89ea9b0960fff69ef236632063a413fa723c2..44da847a9c24eec4b4de51529e6f72639c94c733 100644 (file)
@@ -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);
                }