aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-22 23:49:12 -0700
committerfriendica <info@friendica.com>2014-09-22 23:49:12 -0700
commit72ec78d0270ecc5036e02db984b0a5c5fd293c8b (patch)
tree738453307f5b12cd9bf0b9c94caadae01af3edc8 /include/text.php
parente8854bb19dae01b18d2eb13af76d277847bdbb5a (diff)
downloadvolse-hubzilla-72ec78d0270ecc5036e02db984b0a5c5fd293c8b.tar.gz
volse-hubzilla-72ec78d0270ecc5036e02db984b0a5c5fd293c8b.tar.bz2
volse-hubzilla-72ec78d0270ecc5036e02db984b0a5c5fd293c8b.zip
trying to call mod/magic on rss resources - which have no hub
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php6
1 files changed, 5 insertions, 1 deletions
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 .= '<a href="' . $url . '" title="' . $title . '" class="attachlink" >' . $icon . '</a>';
$attaches[] = array('title' => $title, 'url' => $url, 'icon' => $icon );