diff options
author | zotlabs <mike@macgirvin.com> | 2018-09-09 20:53:20 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-09-09 20:53:20 -0700 |
commit | be3b6304742a6c39d73674b1f7422c029e7cd804 (patch) | |
tree | 201ca29e213686bf0ef2797934dd4397be961cf5 /include/items.php | |
parent | c5bc4fe24519079664b8f63a5e9082f0a7ffc945 (diff) | |
download | volse-hubzilla-be3b6304742a6c39d73674b1f7422c029e7cd804.tar.gz volse-hubzilla-be3b6304742a6c39d73674b1f7422c029e7cd804.tar.bz2 volse-hubzilla-be3b6304742a6c39d73674b1f7422c029e7cd804.zip |
important hyperdrive component
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index b0f6a89cf..c817c5afb 100755 --- a/include/items.php +++ b/include/items.php @@ -3997,6 +3997,7 @@ function zot_feed($uid, $observer_hash, $arr) { $result = array(); $mindate = null; $message_id = null; + $wall = true; require_once('include/security.php'); @@ -4008,6 +4009,10 @@ function zot_feed($uid, $observer_hash, $arr) { $message_id = $arr['message_id']; } + if(array_key_exists('wall',$arr)) { + $wall = intval($arr['wall']); + } + if(! $mindate) $mindate = NULL_DATE; @@ -4036,6 +4041,10 @@ function zot_feed($uid, $observer_hash, $arr) { $limit = ''; } + if($wall) { + $sql_extra .= " and item_wall = 1 "; + } + $items = []; @@ -4048,7 +4057,6 @@ function zot_feed($uid, $observer_hash, $arr) { $r = q("SELECT parent, postopts FROM item WHERE uid IN ( %s ) - AND item_wall = 1 AND item_private = 0 $item_normal $sql_extra ORDER BY created ASC $limit", @@ -4058,7 +4066,6 @@ function zot_feed($uid, $observer_hash, $arr) { else { $r = q("SELECT parent, postopts FROM item WHERE uid = %d - AND item_wall = 1 $item_normal $sql_extra ORDER BY created ASC $limit", intval($uid) |