mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
diaspora_reshare - another try
This commit is contained in:
parent
df996a8b5e
commit
33af8b0e20
1 changed files with 6 additions and 6 deletions
|
@ -627,12 +627,12 @@ function diaspora_reshare($importer,$xml) {
|
||||||
$x = str_replace(array('<activity_streams-photo>','</activity_streams-photo>'),array('<asphoto>','</asphoto>'),$x);
|
$x = str_replace(array('<activity_streams-photo>','</activity_streams-photo>'),array('<asphoto>','</asphoto>'),$x);
|
||||||
$source_xml = parse_xml_string($x,false);
|
$source_xml = parse_xml_string($x,false);
|
||||||
|
|
||||||
if(strlen($source_xml->asphoto->objectId) && ($source_xml->asphoto->objectId != 0) && ($source_xml->asphoto->image_url))
|
if(strlen($source_xml->post->asphoto->objectId) && ($source_xml->post->asphoto->objectId != 0) && ($source_xml->post->asphoto->image_url))
|
||||||
$body = '[url=' . notags(unxmlify($source_xml->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->asphoto->objectId)) . '[/img][/url]' . "\n";
|
$body = '[url=' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->post->asphoto->objectId)) . '[/img][/url]' . "\n";
|
||||||
elseif($source_xml->asphoto->image_url)
|
elseif($source_xml->post->asphoto->image_url)
|
||||||
$body = '[img]' . notags(unxmlify($source_xml->asphoto->image_url)) . '[/img]' . "\n";
|
$body = '[img]' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '[/img]' . "\n";
|
||||||
elseif($source_xml->status_message) {
|
elseif($source_xml->post->status_message) {
|
||||||
$body = diaspora2bb($source_xml->status_message->raw_message);
|
$body = diaspora2bb($source_xml->post->status_message->raw_message);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
logger('diaspora_reshare: no reshare content found: ' . print_r($source_xml,true));
|
logger('diaspora_reshare: no reshare content found: ' . print_r($source_xml,true));
|
||||||
|
|
Loading…
Reference in a new issue