aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Viewsrc.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-02-03 21:12:09 +0100
committerMario Vavti <mario@mariovavti.com>2019-02-03 21:12:09 +0100
commit8dcf27ba29089fdcc0b917ebd26e5c5190dc9d7b (patch)
tree44cd78aaafe32dfb2ede125df7e54ad6a6ba22e9 /Zotlabs/Module/Viewsrc.php
parentd97043725d3a38da9686dbf9501272d175e5420a (diff)
downloadvolse-hubzilla-8dcf27ba29089fdcc0b917ebd26e5c5190dc9d7b.tar.gz
volse-hubzilla-8dcf27ba29089fdcc0b917ebd26e5c5190dc9d7b.tar.bz2
volse-hubzilla-8dcf27ba29089fdcc0b917ebd26e5c5190dc9d7b.zip
add the actual mid for debuging reasons
Diffstat (limited to 'Zotlabs/Module/Viewsrc.php')
-rw-r--r--Zotlabs/Module/Viewsrc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Viewsrc.php b/Zotlabs/Module/Viewsrc.php
index 119990b57..b73d81283 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, llink, plink from item where uid in (%d , %d) and id = %d $item_normal limit 1",
+ $r = q("select id, mid, 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)
@@ -53,7 +53,7 @@ class Viewsrc extends \Zotlabs\Web\Controller {
if(is_ajax()) {
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 '<div>id: ' . $r[0]['id'] . ' | <a href="' . $r[0]['plink'] . '" target="_blank">plink</a> | <a href="' . $r[0]['llink'] . '" target="_blank">llink</a><br>mid: ' . $r[0]['mid'] . '</div>';
echo '<hr>';
echo '<pre class="p-1">' . $o . '</pre>';
echo '</div>';