diff options
author | Sam Tuke <samtuke@owncloud.com> | 2013-01-31 17:47:30 +0000 |
---|---|---|
committer | Sam Tuke <samtuke@owncloud.com> | 2013-01-31 17:51:46 +0000 |
commit | c6b3bdd5a0f6651c557c6653b49acd005bbadba8 (patch) | |
tree | 71781957a504631e7bef2d186493f928b99184f7 /apps/files_encryption | |
parent | 2183f77527fa027a4bf86d8eb2229092605d6827 (diff) | |
download | nextcloud-server-c6b3bdd5a0f6651c557c6653b49acd005bbadba8.tar.gz nextcloud-server-c6b3bdd5a0f6651c557c6653b49acd005bbadba8.zip |
Fixed compatibility with filecache rewrite merge
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/lib/stream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index f634db7a385..4102a681d7f 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -484,7 +484,7 @@ class Stream { and $this->meta['mode']!='rb' ) { - \OC_FileCache::put( $this->path, array( 'encrypted' => true, 'size' => $this->size ), '' ); + \OC\Files\Filesystem::putFileInfo( $this->path, array( 'encrypted' => true, 'size' => $this->size ), '' ); } |