diff options
author | Friendika <info@friendika.com> | 2011-10-05 19:16:05 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-05 19:16:05 -0700 |
commit | 7d6a67f9032295dc677e2aa6c0648938a3cf3199 (patch) | |
tree | 228832377147dbcadb5f5a8c361e9cb68dcafeb4 /include/diaspora.php | |
parent | 7df6cb850efd323e03ea329957273f7d1e3c0323 (diff) | |
download | volse-hubzilla-7d6a67f9032295dc677e2aa6c0648938a3cf3199.tar.gz volse-hubzilla-7d6a67f9032295dc677e2aa6c0648938a3cf3199.tar.bz2 volse-hubzilla-7d6a67f9032295dc677e2aa6c0648938a3cf3199.zip |
mostly cosmetic changes to make DB tables accurately reflect the conversation members
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']; |