From: Michael Vogel Date: Mon, 14 Oct 2013 22:44:46 +0000 (+0200) Subject: Detecting twitter profiles. This is added for the twitter import X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=680524f446ac356fe3742466378bce024959f8a2;p=friendica.git Detecting twitter profiles. This is added for the twitter import --- diff --git a/include/html2plain.php b/include/html2plain.php index 07de829656..3e4c0e8db0 100644 --- a/include/html2plain.php +++ b/include/html2plain.php @@ -84,11 +84,14 @@ function collecturls($message) { foreach ($result as $treffer) { // A list of some links that should be ignored $list = array("/user/", "/tag/", "/group/", "/profile/", "/search?search=", "/search?tag=", "mailto:", "/u/", "/node/", - "//facebook.com/profile.php?id=", "//plus.google.com/"); + "//facebook.com/profile.php?id=", "//plus.google.com/", "//twitter.com/"); foreach ($list as $listitem) if (strpos($treffer[1], $listitem) !== false) $ignore = true; + if ((strpos($treffer[1], "//twitter.com/") !== false) and (strpos($treffer[1], "/status/") !== false)) + $ignore = false; + if ((strpos($treffer[1], "//plus.google.com/") !== false) and (strpos($treffer[1], "/posts") !== false)) $ignore = false;