diff options
author | friendica <info@friendica.com> | 2012-10-03 22:28:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-03 22:28:19 -0700 |
commit | e124c9fa5ca046d48eb927fe80706cf6d42f6bff (patch) | |
tree | 8df07cdd9a21c977bc961328cdc6a2f161a82988 /mod/dfrn_confirm.php | |
parent | d0f62d1219d035d92f3adb717d9fdbed03fa6dd5 (diff) | |
download | volse-hubzilla-e124c9fa5ca046d48eb927fe80706cf6d42f6bff.tar.gz volse-hubzilla-e124c9fa5ca046d48eb927fe80706cf6d42f6bff.tar.bz2 volse-hubzilla-e124c9fa5ca046d48eb927fe80706cf6d42f6bff.zip |
Can't see any posts currently - after the big shakeup, but we can now post top level activities and store them.
Diffstat (limited to 'mod/dfrn_confirm.php')
-rw-r--r-- | mod/dfrn_confirm.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index b0bea7a61..c91b05a48 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -439,7 +439,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { if(count($self)) { $arr = array(); - $arr['uri'] = $arr['parent_uri'] = item_new_uri($a->get_hostname(), $uid); + $arr['uri'] = $arr['parent_uri'] = item_message_id(); $arr['uid'] = $uid; $arr['contact-id'] = $self[0]['id']; $arr['wall'] = 1; @@ -760,7 +760,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { if(count($self)) { $arr = array(); - $arr['uri'] = $arr['parent_uri'] = item_new_uri($a->get_hostname(), $local_uid); + $arr['uri'] = $arr['parent_uri'] = item_message_id(); $arr['uid'] = $local_uid; $arr['contact-id'] = $self[0]['id']; $arr['wall'] = 1; |