]> git.mxchange.org Git - friendica.git/commitdiff
Only filter for hash tags on federated networks
authorMichael <heluecht@pirati.ca>
Fri, 12 Jan 2018 00:23:45 +0000 (00:23 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 12 Jan 2018 00:23:45 +0000 (00:23 +0000)
mod/network.php

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