diff options
author | zotlabs <mike@macgirvin.com> | 2018-07-18 17:05:38 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-07-18 17:05:38 -0700 |
commit | 5ce50d0a2e15ae66765a68ba2785a87ecda57f6a (patch) | |
tree | 52c5b31392f6ea036420fc1014e4366075710e99 /include/text.php | |
parent | 744d548380fb3df074ce8abb78977ddc344744db (diff) | |
download | volse-hubzilla-5ce50d0a2e15ae66765a68ba2785a87ecda57f6a.tar.gz volse-hubzilla-5ce50d0a2e15ae66765a68ba2785a87ecda57f6a.tar.bz2 volse-hubzilla-5ce50d0a2e15ae66765a68ba2785a87ecda57f6a.zip |
mangled urls on redirects
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/text.php b/include/text.php index 122605443..e894c5ce5 100644 --- a/include/text.php +++ b/include/text.php @@ -1018,7 +1018,7 @@ function chanlink_cid($d) { function magiclink_url($observer,$myaddr,$url) { return (($observer) - ? z_root() . '/magic?f=&owa=1&dest=' . $url . '&addr=' . $myaddr + ? z_root() . '/magic?f=&owa=1&bdest=' . bin2hex($url) . '&addr=' . $myaddr : $url ); } @@ -1454,7 +1454,7 @@ function theme_attachments(&$item) { if(is_foreigner($item['author_xchan'])) $url = $r['href']; else - $url = z_root() . '/magic?f=&owa=1&hash=' . $item['author_xchan'] . '&dest=' . $r['href'] . '/' . $r['revision']; + $url = z_root() . '/magic?f=&owa=1&hash=' . $item['author_xchan'] . '&bdest=' . bin2hex($r['href'] . '/' . $r['revision']); //$s .= '<a href="' . $url . '" title="' . $title . '" class="attachlink" >' . $icon . '</a>'; $attaches[] = array('label' => $label, 'url' => $url, 'icon' => $icon, 'title' => $title); |