diff options
author | zotlabs <mike@macgirvin.com> | 2018-07-18 17:05:38 -0700 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-07-19 09:19:33 +0200 |
commit | 931afe98b13399342d5abb4cb13cb09efc09ecad (patch) | |
tree | 9de86698483283b8d4d36bebc6162949172d9f07 /include/text.php | |
parent | 4a6f775334fbf3af2e8e6c781a9a44192a6526d0 (diff) | |
download | volse-hubzilla-931afe98b13399342d5abb4cb13cb09efc09ecad.tar.gz volse-hubzilla-931afe98b13399342d5abb4cb13cb09efc09ecad.tar.bz2 volse-hubzilla-931afe98b13399342d5abb4cb13cb09efc09ecad.zip |
mangled urls on redirects
(cherry picked from commit 5ce50d0a2e15ae66765a68ba2785a87ecda57f6a)
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); |