From: Michael Vogel Date: Wed, 29 Oct 2014 00:31:29 +0000 (+0100) Subject: Additional check for repeated posts X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=338ad1d85f864f2303c2f9185b24fee48fb48771;p=friendica.git Additional check for repeated posts --- diff --git a/include/items.php b/include/items.php index c4555e82da..3171e4f936 100644 --- a/include/items.php +++ b/include/items.php @@ -2615,6 +2615,10 @@ function item_is_remote_self($contact, &$datarray) { if (!$contact['remote_self']) return false; + // Prevent the forwarding of posts that are forwarded + if ($datarray["extid"] == NETWORK_DFRN) + return false; + // Prevent to forward already forwarded posts if ($datarray["app"] == $a->get_hostname()) return false;