diff options
author | friendica <info@friendica.com> | 2014-08-23 21:12:33 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-23 21:12:33 -0700 |
commit | 9b524c9bc4553a82b98f46e4c4804d76ee1495f2 (patch) | |
tree | 68518e3c2b71ba9d7cb1ebfa06a4484f3d1e5bcd | |
parent | a93608391a7d92f3fdff04a01c4521df73b570bc (diff) | |
download | volse-hubzilla-9b524c9bc4553a82b98f46e4c4804d76ee1495f2.tar.gz volse-hubzilla-9b524c9bc4553a82b98f46e4c4804d76ee1495f2.tar.bz2 volse-hubzilla-9b524c9bc4553a82b98f46e4c4804d76ee1495f2.zip |
unobscure viewsrc items
-rw-r--r-- | mod/viewsrc.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/viewsrc.php b/mod/viewsrc.php index 0f4df9b9b..ddf39535c 100644 --- a/mod/viewsrc.php +++ b/mod/viewsrc.php @@ -19,13 +19,16 @@ function viewsrc_content(&$a) { } if(local_user() && $item_id) { - $r = q("select 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 = %d and id = %d limit 1", intval(local_user()), intval($item_id) ); - if($r) + if($r) { + if($r[0]['item_flags'] & 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'])); + } } if(is_ajax()) { |