Skip to content
Snippets Groups Projects
Commit 273d7fb4 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix copy/paste error in common filestorage

parent 77b51f03
Branches
No related tags found
No related merge requests found
...@@ -107,7 +107,7 @@ abstract class OC_Filestorage_Common extends OC_Filestorage { ...@@ -107,7 +107,7 @@ abstract class OC_Filestorage_Common extends OC_Filestorage {
// abstract public function free_space($path); // abstract public function free_space($path);
// abstract public function search($query); // abstract public function search($query);
public function getLocalFile($path){ public function getLocalFile($path){
return $this->getLocalFile(); return $this->toTmpFile();
} }
private function toTmpFile($path){//no longer in the storage api, still usefull here private function toTmpFile($path){//no longer in the storage api, still usefull here
$source=$this->fopen($path,'r'); $source=$this->fopen($path,'r');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment