From 72ec78d0270ecc5036e02db984b0a5c5fd293c8b Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 22 Sep 2014 23:49:12 -0700 Subject: trying to call mod/magic on rss resources - which have no hub --- include/ConversationObject.php | 8 ++++---- include/text.php | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/include/ConversationObject.php b/include/ConversationObject.php index c0fc376ae..a02ba102f 100644 --- a/include/ConversationObject.php +++ b/include/ConversationObject.php @@ -177,11 +177,11 @@ class Conversation extends BaseObject { } } require_once('include/identity.php'); - $sys = get_sys_channel(); +// $sys = get_sys_channel(); - if($sys && $item->get_data_value('uid') == $sys['channel_id']) { - $item->set_commentable(false); - } +// if($sys && $item->get_data_value('uid') == $sys['channel_id']) { +// $item->set_commentable(false); +// } $item->set_conversation($this); $this->threads[] = $item; diff --git a/include/text.php b/include/text.php index 573af4d32..22cf17866 100644 --- a/include/text.php +++ b/include/text.php @@ -1183,7 +1183,11 @@ function theme_attachments(&$item) { $title = t('unknown.???'); $title .= ' ' . $r['length'] . ' ' . t('bytes'); - $url = z_root() . '/magic?f=&hash=' . $item['author_xchan'] . '&dest=' . $r['href'] . '/' . $r['revision']; + require_once('include/identity.php'); + if(is_foreigner($item['author_xchan'])) + $url = $r['href']; + else + $url = z_root() . '/magic?f=&hash=' . $item['author_xchan'] . '&dest=' . $r['href'] . '/' . $r['revision']; $s .= '' . $icon . ''; $attaches[] = array('title' => $title, 'url' => $url, 'icon' => $icon ); -- cgit v1.2.3