]> git.mxchange.org Git - friendica.git/blobdiff - mod/network.php
normalise_link calls
[friendica.git] / mod / network.php
index ec87e4c87ed1697d6883d66c15818226f7c5a438..77e815fe1a194528cb1da2611e29084347c7c977 100644 (file)
@@ -883,7 +883,7 @@ function networkThreadedView(App $a, $update, $parent)
                        foreach ($data as $item) {
                                // Don't show hash tag posts from blocked or ignored contacts
                                $condition = ["`nurl` = ? AND `uid` = ? AND (`blocked` OR `readonly`)",
-                                       normalise_link($item['author-link']), local_user()];
+                                       Strings::normaliseLink($item['author-link']), local_user()];
                                if (!DBA::exists('contact', $condition)) {
                                        $s[$item['uri']] = $item;
                                }