diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_trashbin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 8a5875b9ce6..285d5d915f4 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -22,7 +22,7 @@ $result = array(); if ($dir) { $dirlisting = true; $fullpath = \OCP\Config::getSystemValue('datadirectory').$view->getAbsolutePath($dir); - $dirContent = opendir($fullpath); + $dirContent = $view->opendir($fullpath); $i = 0; while($entryName = readdir($dirContent)) { if ( $entryName != '.' && $entryName != '..' ) { |