From: Robin Appelman Date: Wed, 27 Feb 2013 19:31:21 +0000 (+0100) Subject: Trash: fix download.php X-Git-Tag: v5.0.0RC1~8^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f497970e308844d4785798b47bacf403c2854dd5;p=nextcloud-server.git Trash: fix download.php --- 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");