diff options
author | marijus <mario@mariovavti.com> | 2015-01-18 15:31:13 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2015-01-18 15:31:13 +0100 |
commit | b4faf4d90bca867ace578e7664f51c9921071945 (patch) | |
tree | ea2322baf1bcb035d466edde6009741f5dd1192d /mod/sharedwithme.php | |
parent | 9ac0922ff240589ae2b58cd45270385c1f8dd310 (diff) | |
download | volse-hubzilla-b4faf4d90bca867ace578e7664f51c9921071945.tar.gz volse-hubzilla-b4faf4d90bca867ace578e7664f51c9921071945.tar.bz2 volse-hubzilla-b4faf4d90bca867ace578e7664f51c9921071945.zip |
fix link
Diffstat (limited to 'mod/sharedwithme.php')
-rw-r--r-- | mod/sharedwithme.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/sharedwithme.php b/mod/sharedwithme.php index 2e2677a12..d4aa129ac 100644 --- a/mod/sharedwithme.php +++ b/mod/sharedwithme.php @@ -86,7 +86,7 @@ function sharedwithme_content(&$a) { $o .= '<div class="section-title-wrapper">'; - $o .= '<a href="/sharedfiles/dropall" onclick="return confirmDelete();" class="btn btn-xs btn-default pull-right"><i class="icon-trash"></i> ' . t('Remove all entries') . '</a>'; + $o .= '<a href="/sharedwithme/dropall" onclick="return confirmDelete();" class="btn btn-xs btn-default pull-right"><i class="icon-trash"></i> ' . t('Remove all entries') . '</a>'; $o .= '<h2>' . t('Files shared with me') . '</h2>'; @@ -100,7 +100,7 @@ function sharedwithme_content(&$a) { if($rr['owner_xchan'] != $channel['channel_hash']) { unobscure($rr); $url = rawurldecode($rr['body']); - $o .= '<a href="' . $url . '?f=&zid=' . $channel['xchan_addr'] . '">' . $url . '</a> <a href="/sharedfiles/' . $rr['id'] . '/drop" onclick="return confirmDelete();"><i class="icon-trash drop-icons"></i></a><br><br>'; + $o .= '<a href="' . $url . '?f=&zid=' . $channel['xchan_addr'] . '">' . $url . '</a> <a href="/sharedwithme/' . $rr['id'] . '/drop" onclick="return confirmDelete();"><i class="icon-trash drop-icons"></i></a><br><br>'; } } } |