diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-24 15:32:29 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-24 15:32:29 +0200 |
commit | 7b150dfa963d81889b8d40bf3956795c9a712aec (patch) | |
tree | 30b73d83b7e59791848480a741390060d60c7605 /lib/filechunking.php | |
parent | 56c7ee799cb13f7a4db60663f60b76cdf223614b (diff) | |
parent | 41898a473e8ece37c92e709f685c90d7952d1694 (diff) | |
download | nextcloud-server-7b150dfa963d81889b8d40bf3956795c9a712aec.tar.gz nextcloud-server-7b150dfa963d81889b8d40bf3956795c9a712aec.zip |
merge master into filesystem
Diffstat (limited to 'lib/filechunking.php')
-rw-r--r-- | lib/filechunking.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filechunking.php b/lib/filechunking.php index e616e3b12d8..d63a0d72c83 100644 --- a/lib/filechunking.php +++ b/lib/filechunking.php @@ -59,7 +59,7 @@ class OC_FileChunking { for($i=0; $i < $this->info['chunkcount']; $i++) { $chunk = $cache->get($prefix.$i); $cache->remove($prefix.$i); - $count += fwrite($f,$chunk); + $count += fwrite($f, $chunk); } return $count; } |