fix for trashbin

remotes/origin/stable6
Florin Peter 13 years ago
parent 6dd8c79461
commit 2434739d69
  1. 5
      apps/files_encryption/lib/proxy.php

@ -254,6 +254,11 @@ class Proxy extends \OC_FileProxy {
*/
public function preUnlink( $path ) {
// let the trashbin handle this
if ( \OCP\App::isEnabled('files_trashbin') ) {
return true;
}
$path = Keymanager::fixPartialFilePath( $path );
// Disable encryption proxy to prevent recursive calls

Loading…
Cancel
Save