diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-19 05:24:22 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-19 05:24:22 -0700 |
commit | bbe53699f26bfa4e4d17da097fd8f2fc14da47dd (patch) | |
tree | 70888d850bc8f839532b087584eb41f0a9bbf0a8 /include/poller.php | |
parent | 9b0584e59338f0b75c6b8a9a1b5def33da5de5f6 (diff) | |
download | volse-hubzilla-bbe53699f26bfa4e4d17da097fd8f2fc14da47dd.tar.gz volse-hubzilla-bbe53699f26bfa4e4d17da097fd8f2fc14da47dd.tar.bz2 volse-hubzilla-bbe53699f26bfa4e4d17da097fd8f2fc14da47dd.zip |
bug fixes
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/poller.php b/include/poller.php index 08028cdee..ab030a709 100644 --- a/include/poller.php +++ b/include/poller.php @@ -118,7 +118,7 @@ echo "Length:" . strlen($xml) . "\r\n"; $datarray = get_atom_elements($item); $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['uid']; - $datarray['contact-id'] = $importer['id']; + $datarray['contact-id'] = $contact['id']; $r = post_remote($a,$datarray); continue; } @@ -146,7 +146,7 @@ echo "Length:" . strlen($xml) . "\r\n"; $datarray = get_atom_elements($item); $datarray['parent-uri'] = $item_id; $datarray['uid'] = $importer['uid']; - $datarray['contact-id'] = $importer['id']; + $datarray['contact-id'] = $contact['id']; $r = post_remote($a,$datarray); continue; |