diff options
Diffstat (limited to 'include/activities.php')
-rw-r--r-- | include/activities.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/activities.php b/include/activities.php index 7d007e05b..df43f1f6f 100644 --- a/include/activities.php +++ b/include/activities.php @@ -21,8 +21,10 @@ function profile_activity($changed, $value) { $arr['uid'] = local_channel(); $arr['aid'] = $self['channel_account_id']; $arr['owner_xchan'] = $arr['author_xchan'] = $self['xchan_hash']; - $arr['item_flags'] = ITEM_ORIGIN|ITEM_THREAD_TOP; - $arr['item_wall'] = 1; + + $arr['item_wall'] = 1; + $arr['item_origin'] = 1; + $arr['item_thread_top'] = 1; $arr['verb'] = ACTIVITY_UPDATE; $arr['obj_type'] = ACTIVITY_OBJ_PROFILE; |