fix uploading files using webdav

This commit is contained in:
Robin Appelman 2011-09-25 01:20:43 +02:00
parent c16a9a83ba
commit 57bffdb46a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class OC_FileProxy_Quota extends OC_FileProxy{
public function preFile_put_contents($path,$data){
if (is_resource($data)) {
$data = stream_get_contents($data);
$data = '';//TODO: find a way to get the length of the stream without emptying it
}
return (strlen($data)<$this->getFreeSpace() or $this->getFreeSpace()==0);
}