diff options
Diffstat (limited to 'include/diaspora.php')
-rw-r--r-- | include/diaspora.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 1ae8ca800..33b8336f3 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -613,7 +613,6 @@ function diaspora_comment($importer,$xml,$msg) { return; } - if($parent_author_signature) { $owner_signed_data = $guid . ';' . $parent_guid . ';' . $text . ';' . $diaspora_handle; @@ -646,9 +645,9 @@ function diaspora_comment($importer,$xml,$msg) { $datarray['created'] = $datarray['edited'] = datetime_convert(); $datarray['private'] = $parent_item['private']; - $datarray['owner-name'] = $contact['name']; - $datarray['owner-link'] = $contact['url']; - $datarray['owner-avatar'] = $contact['thumb']; + $datarray['owner-name'] = $parent_item['owner-name']; + $datarray['owner-link'] = $parent_item['owner-link']; + $datarray['owner-avatar'] = $parent_item['owner-avatar']; $datarray['author-name'] = $person['name']; $datarray['author-link'] = $person['url']; |