diff options
author | friendica <info@friendica.com> | 2015-01-29 00:28:23 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-29 00:28:23 -0800 |
commit | fd0b6c967fce4d8a82e9dad121ae7d8301d3f342 (patch) | |
tree | 5c37812ef7baeadc17fce088c4394d25f75b593c /include/activities.php | |
parent | c993ddd86ee25832e35e65333fa25b396e7aefdf (diff) | |
parent | 872b165eb2bb5d632a12f2d7e1a28e195c2d5348 (diff) | |
download | volse-hubzilla-fd0b6c967fce4d8a82e9dad121ae7d8301d3f342.tar.gz volse-hubzilla-fd0b6c967fce4d8a82e9dad121ae7d8301d3f342.tar.bz2 volse-hubzilla-fd0b6c967fce4d8a82e9dad121ae7d8301d3f342.zip |
Merge branch 'master' into pocorate
Diffstat (limited to 'include/activities.php')
-rw-r--r-- | include/activities.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/activities.php b/include/activities.php index d770ccb23..ca8863e51 100644 --- a/include/activities.php +++ b/include/activities.php @@ -3,10 +3,10 @@ function profile_activity($changed, $value) { $a = get_app(); - if(! local_user() || ! is_array($changed) || ! count($changed)) + if(! local_channel() || ! is_array($changed) || ! count($changed)) return; - if(! get_pconfig(local_user(),'system','post_profilechange')) + if(! get_pconfig(local_channel(),'system','post_profilechange')) return; require_once('include/items.php'); @@ -18,7 +18,7 @@ function profile_activity($changed, $value) { $arr = array(); $arr['mid'] = $arr['parent_mid'] = item_message_id(); - $arr['uid'] = local_user(); + $arr['uid'] = local_channel(); $arr['aid'] = $self['channel_account_id']; $arr['owner_xchan'] = $arr['author_xchan'] = $self['xchan_hash']; $arr['item_flags'] = ITEM_WALL|ITEM_ORIGIN|ITEM_THREAD_TOP; |