Browse Source

Fixed trashbin to use correct class

It seems that \OC_Filesystemview has been removed.
Now using the correct class \OC\Files\View()
tags/v7.0.0alpha2
Vincent Petry 10 years ago
parent
commit
818c77684d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      apps/files_trashbin/lib/helper.php

+ 1
- 1
apps/files_trashbin/lib/helper.php View File

@@ -20,7 +20,7 @@ class Helper
$timestamp = null;
$user = \OCP\User::getUser();

$view = new \OC_Filesystemview('/' . $user . '/files_trashbin/files');
$view = new \OC\Files\View('/' . $user . '/files_trashbin/files');

if (ltrim($dir, '/') !== '' && !$view->is_dir($dir)) {
throw new \Exception('Directory does not exists');

Loading…
Cancel
Save