diff options
author | friendica <info@friendica.com> | 2015-02-08 20:57:37 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-08 20:57:37 -0800 |
commit | 08b757a22cd2804bfec8ecf682b6987b8c06ca49 (patch) | |
tree | 477f3a8e84388aab2a4f3c938a166597c7467d19 /include/diaspora.php | |
parent | 4b348d248975ba07ba9cea62f51eb52d6afb5645 (diff) | |
parent | 247579ebf13ead372eee87bd2351078f7219321e (diff) | |
download | volse-hubzilla-08b757a22cd2804bfec8ecf682b6987b8c06ca49.tar.gz volse-hubzilla-08b757a22cd2804bfec8ecf682b6987b8c06ca49.tar.bz2 volse-hubzilla-08b757a22cd2804bfec8ecf682b6987b8c06ca49.zip |
Merge branch 'master' into tres
Conflicts:
mod/events.php
view/css/mod_events.css
Diffstat (limited to 'include/diaspora.php')
-rwxr-xr-x | include/diaspora.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 518f6ccd1..c02110ae2 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -772,7 +772,6 @@ function diaspora_request($importer,$xml) { - function diaspora_post($importer,$xml,$msg) { $a = get_app(); @@ -898,8 +897,8 @@ function diaspora_post($importer,$xml,$msg) { } - // 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; + $plink = service_plink($contact,$guid); + $datarray['uid'] = $importer['channel_id']; @@ -1116,8 +1115,7 @@ function diaspora_reshare($importer,$xml,$msg) { } } - // This won't work on redmatrix - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = service_plink($contact,$guid); $datarray['uid'] = $importer['channel_id']; $datarray['mid'] = $datarray['parent_mid'] = $guid; @@ -1198,7 +1196,7 @@ function diaspora_asphoto($importer,$xml,$msg) { return; } - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; + $plink = service_plink($contact,$guid); $datarray = array(); |