diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-02-27 20:31:21 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-02-27 20:31:21 +0100 |
commit | f497970e308844d4785798b47bacf403c2854dd5 (patch) | |
tree | ef9b55c52f2cb8b7c11b35a6fece228811e4891d | |
parent | d2fe6007890e6e3680e010e8bbc2346d8bcf7d04 (diff) | |
download | nextcloud-server-f497970e308844d4785798b47bacf403c2854dd5.tar.gz nextcloud-server-f497970e308844d4785798b47bacf403c2854dd5.zip |
Trash: fix download.php
-rw-r--r-- | apps/files_trashbin/download.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/download.php b/apps/files_trashbin/download.php index 665697dca5f..60328e1dddb 100644 --- a/apps/files_trashbin/download.php +++ b/apps/files_trashbin/download.php @@ -26,7 +26,7 @@ OCP\User::checkLoggedIn(); $filename = $_GET["file"]; -$view = new OC_FilesystemView('/'.\OCP\User::getUser().'/files_trashbin'); +$view = new OC_FilesystemView('/'.\OCP\User::getUser().'/files_trashbin/files'); if(!$view->file_exists($filename)) { header("HTTP/1.0 404 Not Found"); |