]> git.mxchange.org Git - friendica.git/commitdiff
Only do it when public commenting is enabled
authorMichael <heluecht@pirati.ca>
Mon, 8 Jan 2018 06:59:49 +0000 (06:59 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 8 Jan 2018 06:59:49 +0000 (06:59 +0000)
mod/network.php

index fba775ab50df3bb96afe9b768afc5b32491cb2b5..8cebe731758d47ae389b72a301f5e39bbd68ea94 100644 (file)
@@ -807,7 +807,7 @@ function networkThreadedView(App $a, $update = 0) {
        }
 
        // Only show it when unfiltered (no groups, no networks, ...)
-       if ((count($r) > 0) && (strlen($sql_extra . $sql_extra2 . $sql_extra3 . $sql_extra4 . $sql_nets) == 0)) {
+       if (Config::get('system', 'comment_public') && (count($r) > 0) && (strlen($sql_extra . $sql_extra2 . $sql_extra3 . $sql_extra4 . $sql_nets) == 0)) {
                $top_limit = current($r)['order_date'];
                $bottom_limit = end($r)['order_date'];