diff options
author | Mario <mario@mariovavti.com> | 2020-04-23 18:21:38 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-23 18:21:38 +0000 |
commit | 77c87bcccf6fffca9975fd5a6c08cfddc1ca66e8 (patch) | |
tree | 80d6b59278c6fc2fdef3327cbb495ea6ed4a27e0 /include | |
parent | b7a655917ed1f7caa5b8b3d9b92fdd578c6252c4 (diff) | |
download | volse-hubzilla-77c87bcccf6fffca9975fd5a6c08cfddc1ca66e8.tar.gz volse-hubzilla-77c87bcccf6fffca9975fd5a6c08cfddc1ca66e8.tar.bz2 volse-hubzilla-77c87bcccf6fffca9975fd5a6c08cfddc1ca66e8.zip |
default item_wall to 0
Diffstat (limited to 'include')
-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 dbb4a7623..87ae5c6a5 100755 --- a/include/items.php +++ b/include/items.php @@ -423,7 +423,7 @@ function post_activity_item($arr, $allow_code = false, $deliver = true) { if(! array_key_exists('item_origin',$arr)) $arr['item_origin'] = 1; if(! array_key_exists('item_wall',$arr) && (! $is_comment)) - $arr['item_wall'] = 1; + $arr['item_wall'] = 0; if(! array_key_exists('item_thread_top',$arr) && (! $is_comment)) $arr['item_thread_top'] = 1; |