mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
diaspora_reshare no content found, d* profile message work in progress, network page fix for cid search using post order
This commit is contained in:
parent
1148cbab22
commit
19129e06c3
5 changed files with 25 additions and 4 deletions
|
@ -621,7 +621,7 @@ function diaspora_reshare($importer,$xml) {
|
|||
return;
|
||||
}
|
||||
$x = str_replace(array('<activity_streams-photo>','</activity_streams-photo>'),array('<asphoto>','</asphoto>'),$x);
|
||||
$source_xml = parse_xml_string($x,true);
|
||||
$source_xml = parse_xml_string($x,false);
|
||||
|
||||
if(strlen($source_xml->asphoto->objectId) && ($source_xml->asphoto->objectId != 0) && ($source_xml->asphoto->image_url))
|
||||
$body = '[url=' . notags(unxmlify($source_xml->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->asphoto->objectId)) . '[/img][/url]' . "\n";
|
||||
|
@ -631,7 +631,7 @@ function diaspora_reshare($importer,$xml) {
|
|||
$body = diaspora2bb($source_xml->status_message->raw_message);
|
||||
}
|
||||
else {
|
||||
logger('diaspora_reshare: no reshare content found.');
|
||||
logger('diaspora_reshare: no reshare content found: ' . print_r($source_xml,true));
|
||||
return;
|
||||
}
|
||||
if(! $body) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue