diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-07-02 17:53:54 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-07-04 10:34:54 +0200 |
commit | e9f573086915f6d0b86e5c57e1a2b627589f1fb6 (patch) | |
tree | 83aa0254cc9c726fb07cafc5637c523d660d37c3 /apps/files_encryption | |
parent | 3b9fa8158183950634172799737489cefccd170c (diff) | |
download | nextcloud-server-e9f573086915f6d0b86e5c57e1a2b627589f1fb6.tar.gz nextcloud-server-e9f573086915f6d0b86e5c57e1a2b627589f1fb6.zip |
make sure that the umount hook always contains the path relative to data/user/files
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 3625d5a09f3..7303cd080e5 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -441,7 +441,7 @@ class Hooks { $ownerOld = self::$renamedFiles[$params['oldpath']]['uid'];
$pathOld = self::$renamedFiles[$params['oldpath']]['path'];
} else {
- \OCP\Util::writeLog('Encryption library', "can't get path and owner from the file before it was renamed", \OCP\Util::ERROR);
+ \OCP\Util::writeLog('Encryption library', "can't get path and owner from the file before it was renamed", \OCP\Util::DEBUG);
return false;
}
|