diff options
author | Friendika <info@friendika.com> | 2011-07-05 19:55:09 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-05 19:55:09 -0700 |
commit | d7154a4606d8c6f86b2eacd35c16893283b484c4 (patch) | |
tree | 8d01bc0ed5bf767a05ff5c447af1f58a2a3a4b90 /include | |
parent | 76e56fd44e4a8b43bdf42fae64484e5bb69dd450 (diff) | |
download | volse-hubzilla-d7154a4606d8c6f86b2eacd35c16893283b484c4.tar.gz volse-hubzilla-d7154a4606d8c6f86b2eacd35c16893283b484c4.tar.bz2 volse-hubzilla-d7154a4606d8c6f86b2eacd35c16893283b484c4.zip |
ability to link contacts that are "really me, but on another system/network".
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 9cafaea62..6593647ba 100644 --- a/include/items.php +++ b/include/items.php @@ -1260,6 +1260,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee if(! x($datarray,'author-avatar')) $datarray['author-avatar'] = $contact['thumb']; + $r = q("SELECT `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($item_id), intval($importer['uid']) @@ -1416,6 +1417,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee $datarray['last-child'] = 0; } + // This is my contact on another system, but it's really me. + // Turn this into a wall post. + + if($contact['remote_self']) + $datarray['wall'] = 1; + $datarray['parent-uri'] = $item_id; $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; |