From: Michael Vogel Date: Fri, 3 Apr 2015 11:06:19 +0000 (+0200) Subject: Reshared posts weren't always recognized as such. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=796b13673d618c8eaab1104a25d0791a08220718;p=friendica.git Reshared posts weren't always recognized as such. --- diff --git a/include/diaspora.php b/include/diaspora.php index f24487ae51..dd877112ba 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2512,6 +2512,26 @@ function diaspora_is_reshare($body) { if ($body == $attributes) return(false); + $guid = ""; + preg_match("/guid='(.*?)'/ism", $attributes, $matches); + if ($matches[1] != "") + $guid = $matches[1]; + + preg_match('/guid="(.*?)"/ism', $attributes, $matches); + if ($matches[1] != "") + $guid = $matches[1]; + + if ($guid != "") { + $r = q("SELECT `contact-id` FROM `item` WHERE `guid` = '%s' AND `network` IN ('%s', '%s') LIMIT 1", + dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA); + if ($r) { + $ret= array(); + $ret["root_handle"] = diaspora_handle_from_contact($r[0]["contact-id"]); + $ret["root_guid"] = $guid; + return($ret); + } + } + $profile = ""; preg_match("/profile='(.*?)'/ism", $attributes, $matches); if ($matches[1] != "")