diff options
author | friendica <info@friendica.com> | 2014-09-22 21:37:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-22 21:37:19 -0700 |
commit | fb05919d90cac9bb360bbb62b7e89d5c0e59b484 (patch) | |
tree | a223ce505137d1ddbfa17132c46bf09e3ed511c1 /mod | |
parent | b735961560d676f46bc43679f169ec2b0134de69 (diff) | |
download | volse-hubzilla-fb05919d90cac9bb360bbb62b7e89d5c0e59b484.tar.gz volse-hubzilla-fb05919d90cac9bb360bbb62b7e89d5c0e59b484.tar.bz2 volse-hubzilla-fb05919d90cac9bb360bbb62b7e89d5c0e59b484.zip |
make discover items interactive
Diffstat (limited to 'mod')
-rw-r--r-- | mod/network.php | 2 | ||||
-rw-r--r-- | mod/viewsrc.php | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php index 97870a6a1..2b07bb139 100644 --- a/mod/network.php +++ b/mod/network.php @@ -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(); diff --git a/mod/viewsrc.php b/mod/viewsrc.php index ddf39535c..982d1c417 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -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) ); |