revert to using fopen for webdav instead of readfile

This commit is contained in:
Robin Appelman 2012-07-16 19:55:53 +02:00
parent 7ab35af6dd
commit f047fdbfaa
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
*/
public function get() {
return OC_Filesystem::readfile($this->path);
return OC_Filesystem::fopen($this->path,'rb');
}