return path of tmp file like filestorage/common does. Fixes broken folder-/multifile-download.

remotes/origin/stable4
Arthur Schiwon 13 years ago
parent 24bc639222
commit c92fc9bf65
  1. 3
      lib/filesystemview.php

@ -282,7 +282,8 @@ class OC_FilesystemView {
if($source){
$extention=substr($path,strrpos($path,'.'));
$tmpFile=OC_Helper::tmpFile($extention);
return file_put_contents($tmpFile,$source);
file_put_contents($tmpFile,$source);
return $tmpFile;
}
}
}

Loading…
Cancel
Save