From e45a9b1522854c1e3341c2feae7a44a1b964b83a Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 9 Sep 2014 23:23:52 -0700 Subject: this should be the final piece of the puzzle --- include/diaspora.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/include/diaspora.php b/include/diaspora.php index e7a6cb8ea..afb318b05 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -864,6 +864,20 @@ function diaspora_post($importer,$xml,$msg) { } } + $cnt = preg_match_all('/@\[zrl=(.*?)\](.*?)\[\/zrl\]/ism',$body,$matches,PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $datarray['term'][] = array( + 'uid' => $importer['channel_id'], + 'type' => TERM_MENTION, + 'otype' => TERM_OBJ_POST, + 'term' => $mtch[2], + 'url' => $mtch[1] + ); + } + } + + // this won't work for Friendica or Redmatrix but it's probably the best we can do. $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; -- cgit v1.2.3