diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-24 20:39:24 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-24 20:39:24 -0700 |
commit | b41218ca303b9fd8258fd613915d3c4b9fd411c0 (patch) | |
tree | c1b08bee4f7b3737e3717d4d5eb4be9b781dc044 /mod/dfrn_notify.php | |
parent | b8b227b32882fb511c8481a41c53637e7ce7707a (diff) | |
download | volse-hubzilla-b41218ca303b9fd8258fd613915d3c4b9fd411c0.tar.gz volse-hubzilla-b41218ca303b9fd8258fd613915d3c4b9fd411c0.tar.bz2 volse-hubzilla-b41218ca303b9fd8258fd613915d3c4b9fd411c0.zip |
workflow for federated/non-dfrn followers
Diffstat (limited to 'mod/dfrn_notify.php')
-rw-r--r-- | mod/dfrn_notify.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 517c91eda..fc609ddc0 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -205,7 +205,7 @@ function dfrn_notify_post(&$a) { if($is_reply) { if($feed->get_item_quantity() == 1) { // remote reply to our post. Import and then notify everybody else. - $datarray = get_atom_elements($item); + $datarray = get_atom_elements($feed,$item); $datarray['type'] = 'remote-comment'; $datarray['wall'] = 1; $datarray['parent-uri'] = $parent_uri; @@ -287,7 +287,7 @@ function dfrn_notify_post(&$a) { } continue; } - $datarray = get_atom_elements($item); + $datarray = get_atom_elements($feed,$item); $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['importer_uid']; $datarray['contact-id'] = $importer['id']; @@ -354,7 +354,7 @@ function dfrn_notify_post(&$a) { } - $datarray = get_atom_elements($item); + $datarray = get_atom_elements($feed,$item); $datarray['parent-uri'] = $item_id; $datarray['uid'] = $importer['importer_uid']; $datarray['contact-id'] = $importer['id']; |