From fb05919d90cac9bb360bbb62b7e89d5c0e59b484 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 22 Sep 2014 21:37:19 -0700 Subject: make discover items interactive --- mod/viewsrc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'mod/viewsrc.php') 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) ); -- cgit v1.2.3