aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-06-09 16:38:15 +0200
committerMario Vavti <mario@mariovavti.com>2018-06-09 16:38:15 +0200
commit9e29c136788fc14b9264843e11541bb6a2176e19 (patch)
treee16a662cbd0cc5e296ae288c980e174917123d31 /Zotlabs
parente37ccb7a63ed9c0c67ebe1600109fe82258615df (diff)
downloadvolse-hubzilla-9e29c136788fc14b9264843e11541bb6a2176e19.tar.gz
volse-hubzilla-9e29c136788fc14b9264843e11541bb6a2176e19.tar.bz2
volse-hubzilla-9e29c136788fc14b9264843e11541bb6a2176e19.zip
fix issue #1219
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Viewsrc.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/Zotlabs/Module/Viewsrc.php b/Zotlabs/Module/Viewsrc.php
index 54ab89e81..5900e385a 100644
--- a/Zotlabs/Module/Viewsrc.php
+++ b/Zotlabs/Module/Viewsrc.php
@@ -28,7 +28,7 @@ class Viewsrc extends \Zotlabs\Web\Controller {
$item_normal = item_normal();
if(local_channel() && $item_id) {
- $r = q("select id, item_flags, mimetype, item_obscured, body from item where uid in (%d , %d) and id = %d $item_normal limit 1",
+ $r = q("select id, item_flags, mimetype, item_obscured, body, llink, plink from item where uid in (%d , %d) and id = %d $item_normal limit 1",
intval(local_channel()),
intval($sys['channel_id']),
intval($item_id)
@@ -52,8 +52,11 @@ class Viewsrc extends \Zotlabs\Web\Controller {
}
if(is_ajax()) {
- print '<div><i class="fa fa-pencil"> ' . t('Source of Item') . ' ' . $r[0]['id'] . '</i></div>';
- echo $o;
+ echo '<div class="p-1">';
+ echo '<div>id: ' . $r[0]['id'] . ' | <a href="' . $r[0]['plink'] . '" target="_blank">plink</a> | <a href="' . $r[0]['llink'] . '" target="_blank">llink</a></div>';
+ echo '<hr>';
+ echo '<pre class="p-1">' . $o . '</pre>';
+ echo '</div>';
killme();
}