From c0f6d7319524f8fb8bac764d6e2f306335d2266b Mon Sep 17 00:00:00 2001 From: zottel Date: Thu, 9 Jan 2014 16:02:40 +0100 Subject: save channel//?mid=... plinks with the items --- include/items.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/include/items.php b/include/items.php index 781956882..883458b6e 100755 --- a/include/items.php +++ b/include/items.php @@ -1602,8 +1602,15 @@ function item_store($arr,$allow_exec = false) { $arr['llink'] = z_root() . '/display/' . $arr['mid']; - if(! $arr['plink']) - $arr['plink'] = $arr['llink']; + if(! $arr['plink']) { + if (local_user()){ + $channel = get_app()->get_channel(); + $arr['plink'] = z_root() . '/channel/' . $channel['channel_address'] . '/?mid=' . $arr['mid']; + } else { + // can this ever happen? + $arr['plink'] = $arr['llink']; + } + } if($arr['parent_mid'] === $arr['mid']) { $parent_id = 0; -- cgit v1.2.3