make discover items interactive
This commit is contained in:
@@ -405,7 +405,7 @@ function network_content(&$a, $update = 0, $load = false) {
|
||||
|
||||
xchan_query($items);
|
||||
$items = fetch_post_tags($items,true);
|
||||
$items = conv_sort($items,$ordering);
|
||||
$items = conv_sort($items,$ordering,(($firehose) ? local_user() : 0));
|
||||
}
|
||||
else {
|
||||
$items = array();
|
||||
|
||||
@@ -5,6 +5,8 @@ function viewsrc_content(&$a) {
|
||||
|
||||
$o = '';
|
||||
|
||||
$sys = get_sys_channel();
|
||||
|
||||
$item_id = ((argc() > 1) ? intval(argv(1)) : 0);
|
||||
$json = ((argc() > 2 && argv(2) === 'json') ? true : false);
|
||||
|
||||
@@ -19,8 +21,9 @@ function viewsrc_content(&$a) {
|
||||
}
|
||||
|
||||
if(local_user() && $item_id) {
|
||||
$r = q("select item_flags, body from item where item_restrict = 0 and uid = %d and id = %d limit 1",
|
||||
$r = q("select item_flags, body from item where item_restrict = 0 and uid in (%d , %d) and id = %d limit 1",
|
||||
intval(local_user()),
|
||||
intval($sys['channel_id']),
|
||||
intval($item_id)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user