diff options
author | friendica <info@friendica.com> | 2013-04-17 21:40:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-04-17 21:40:40 -0700 |
commit | 5f27e29bb8f5eea59d48e07cc3a7ef2a52733a3e (patch) | |
tree | b4af2df99d8b795618fbb578ef5d5496cd707247 /include/items.php | |
parent | 4d5eade991c6c86dc0fd8168331e0f06e43a5dff (diff) | |
download | volse-hubzilla-5f27e29bb8f5eea59d48e07cc3a7ef2a52733a3e.tar.gz volse-hubzilla-5f27e29bb8f5eea59d48e07cc3a7ef2a52733a3e.tar.bz2 volse-hubzilla-5f27e29bb8f5eea59d48e07cc3a7ef2a52733a3e.zip |
basic poke working
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 034d27256..954042b65 100755 --- a/include/items.php +++ b/include/items.php @@ -92,7 +92,7 @@ function post_activity_item($arr) { $arr['parent_mid'] = ((x($arr,'parent_mid')) ? $arr['parent_mid'] : $arr['mid']); $arr['thr_parent'] = ((x($arr,'thr_parent')) ? $arr['thr_parent'] : $arr['mid']); - $arr['owner_xchan'] = ((x($arr,'owner_xchan')) ? $arr['owner_xchan'] : $channel['channel_hash']); + $arr['owner_xchan'] = ((x($arr,'owner_xchan')) ? $arr['owner_xchan'] : $channel['channel_hash']); $arr['author_xchan'] = ((x($arr,'author_xchan')) ? $arr['author_xchan'] : $observer['xchan_hash']); $arr['verb'] = ((x($arr,'verb')) ? $arr['verb'] : ACTIVITY_POST); |