summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/lib/cryptstream.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-02-12 15:56:32 +0100
committerRobin Appelman <icewind@owncloud.com>2012-02-21 20:48:48 +0100
commit6a8364c3ffeb9d6227f141ae77ba317a1afbfdf6 (patch)
treeadc7d6494a32ca97203a225505c9de6cc6725aed /apps/files_encryption/lib/cryptstream.php
parent95459d068e47b83ed13348da3e1d03d062209e41 (diff)
downloadnextcloud-server-6a8364c3ffeb9d6227f141ae77ba317a1afbfdf6.tar.gz
nextcloud-server-6a8364c3ffeb9d6227f141ae77ba317a1afbfdf6.zip
rework the way file_put_contents is handeled
Diffstat (limited to 'apps/files_encryption/lib/cryptstream.php')
-rw-r--r--apps/files_encryption/lib/cryptstream.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_encryption/lib/cryptstream.php b/apps/files_encryption/lib/cryptstream.php
index 00dda7352b3..97e0846187d 100644
--- a/apps/files_encryption/lib/cryptstream.php
+++ b/apps/files_encryption/lib/cryptstream.php
@@ -90,6 +90,7 @@ class OC_CryptStream{
}
public function stream_write($data){
+ error_log('write to '. $this->path);
$length=strlen($data);
$written=0;
$currentPos=ftell($this->source);