diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/filestorage.php | 4 |
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); } |