aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-19 15:08:16 -0700
committerFriendika <info@friendika.com>2011-10-19 15:08:16 -0700
commit19129e06c39da10b7b026ab8c2176322102a95cf (patch)
treefaf88fe3cd8e7e3da727763dd3488545d93220e6 /include
parent1148cbab2253b5ae58089c39fb2ec682dc05e117 (diff)
downloadvolse-hubzilla-19129e06c39da10b7b026ab8c2176322102a95cf.tar.gz
volse-hubzilla-19129e06c39da10b7b026ab8c2176322102a95cf.tar.bz2
volse-hubzilla-19129e06c39da10b7b026ab8c2176322102a95cf.zip
diaspora_reshare no content found, d* profile message work in progress, network page fix for cid search using post order
Diffstat (limited to 'include')
-rw-r--r--include/diaspora.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/diaspora.php b/include/diaspora.php
index 4012c02e5..aa6ee9670 100644
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -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) {