aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-01-10 08:20:56 -0800
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-01-10 08:20:56 -0800
commitecbe798294600cf3387eb951f13c6f4358d4691c (patch)
treeb63815be05841e750809b53b8c404e454510099a
parentd17c0fe1fcfa8b21004feb0c52d45fe7ba3384ec (diff)
parentc4705724f1e011b8f8d8f3fef419bc27f31b93fe (diff)
downloadvolse-hubzilla-ecbe798294600cf3387eb951f13c6f4358d4691c.tar.gz
volse-hubzilla-ecbe798294600cf3387eb951f13c6f4358d4691c.tar.bz2
volse-hubzilla-ecbe798294600cf3387eb951f13c6f4358d4691c.zip
Merge pull request #263 from git-marijus/master
make goaway link work
-rw-r--r--mod/filestorage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/filestorage.php b/mod/filestorage.php
index 3e87dccb8..18760dd45 100644
--- a/mod/filestorage.php
+++ b/mod/filestorage.php
@@ -84,12 +84,12 @@ function filestorage_content(&$a) {
);
if(! $r) {
notice( t('File not found.') . EOL);
- goaway(z_root() . '/filestorage' . $which);
+ goaway(z_root() . '/filestorage/' . $which);
}
attach_delete($owner,$r[0]['hash']);
- goaway(z_root() . '/filestorage' . $which);
+ goaway(z_root() . '/filestorage/' . $which);
}