diff options
author | friendica <info@friendica.com> | 2015-01-22 18:41:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-22 18:41:10 -0800 |
commit | 6e0e3b2433fc426b758a55811f56536d58705813 (patch) | |
tree | a8d8fb7c63216cea94765e93be935f2b9d2fe227 /mod/viewsrc.php | |
parent | e46eba125888704b4381aa8418495e91eeb565c8 (diff) | |
download | volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.tar.gz volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.tar.bz2 volse-hubzilla-6e0e3b2433fc426b758a55811f56536d58705813.zip |
more expanding item flags
Diffstat (limited to 'mod/viewsrc.php')
-rw-r--r-- | mod/viewsrc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 982d1c417..83acb1c23 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -21,14 +21,14 @@ function viewsrc_content(&$a) { } if(local_user() && $item_id) { - $r = q("select item_flags, body from item where item_restrict = 0 and uid in (%d , %d) and id = %d limit 1", + $r = q("select id, item_flags, item_obscured, 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) ); if($r) { - if($r[0]['item_flags'] & ITEM_OBSCURED) + if(intval($r[0]['item_obscured'])) $r[0]['body'] = crypto_unencapsulate(json_decode($r[0]['body'],true),get_config('system','prvkey')); $o = (($json) ? json_encode($r[0]['body']) : str_replace("\n",'<br />',$r[0]['body'])); } |