diff options
author | Wave <wave72@users.noreply.github.com> | 2016-07-22 10:55:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-22 10:55:02 +0200 |
commit | 744ad84714fe0f7a3d90250a4ff02dc4327b9061 (patch) | |
tree | 595fb74ec9ea0bc7130d18bd7993d719a222d343 /mod/viewsrc.php | |
parent | c38c79d71c8ef70ef649f83e322f1984b75ee2dd (diff) | |
parent | 7d897a3f03bd57ed556433eb84a41963ba44e02e (diff) | |
download | volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.gz volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.tar.bz2 volse-hubzilla-744ad84714fe0f7a3d90250a4ff02dc4327b9061.zip |
Merge pull request #6 from redmatrix/dev
Dev
Diffstat (limited to 'mod/viewsrc.php')
-rw-r--r-- | mod/viewsrc.php | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/mod/viewsrc.php b/mod/viewsrc.php deleted file mode 100644 index a4efd1214..000000000 --- a/mod/viewsrc.php +++ /dev/null @@ -1,47 +0,0 @@ -<?php - - -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); - - if(! local_channel()) { - notice( t('Permission denied.') . EOL); - } - - - if(! $item_id) { - App::$error = 404; - notice( t('Item not found.') . EOL); - } - - $item_normal = item_normal(); - - if(local_channel() && $item_id) { - $r = q("select id, item_flags, item_obscured, body from item where uid in (%d , %d) and id = %d $item_normal limit 1", - intval(local_channel()), - intval($sys['channel_id']), - intval($item_id) - ); - - if($r) { - 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'])); - } - } - - if(is_ajax()) { - print '<div><i class="icon-pencil"> ' . t('Source of Item') . ' ' . $r[0]['id'] . '</i></div>'; - echo $o; - killme(); - } - - return $o; -} - |