diff options
author | friendica <info@friendica.com> | 2012-08-15 22:33:37 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-15 22:33:37 -0700 |
commit | f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7 (patch) | |
tree | 586454a21f87a8f9a5e75073ac065cfbbae935a4 /mod/poke.php | |
parent | 77b334efbce9eb9aef825b968a2c852da21bfe94 (diff) | |
download | volse-hubzilla-f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7.tar.gz volse-hubzilla-f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7.tar.bz2 volse-hubzilla-f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7.zip |
item table rename parent-uri, target-type, object-type (more to come later)
Diffstat (limited to 'mod/poke.php')
-rwxr-xr-x | mod/poke.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/poke.php b/mod/poke.php index 5dbbd1727..bb062308f 100755 --- a/mod/poke.php +++ b/mod/poke.php @@ -82,7 +82,7 @@ function poke_init(&$a) { $arr['uid'] = $uid; $arr['uri'] = $uri; - $arr['parent-uri'] = (($parent_uri) ? $parent_uri : $uri); + $arr['parent_uri'] = (($parent_uri) ? $parent_uri : $uri); $arr['type'] = 'activity'; $arr['wall'] = 1; $arr['contact-id'] = $poster['id']; @@ -101,7 +101,7 @@ function poke_init(&$a) { $arr['visible'] = 1; $arr['verb'] = $activity; $arr['private'] = $private; - $arr['object-type'] = ACTIVITY_OBJ_PERSON; + $arr['obj_type'] = ACTIVITY_OBJ_PERSON; $arr['origin'] = 1; $arr['body'] = '[url=' . $poster['url'] . ']' . $poster['name'] . '[/url]' . ' ' . t($verbs[$verb][0]) . ' ' . '[url=' . $target['url'] . ']' . $target['name'] . '[/url]'; |