diff options
Diffstat (limited to 'mod')
-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>'; } } } |