Fix tempory file path
This commit is contained in:
parent
54bfe66296
commit
fe645d71da
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ namespace PicoDAV
|
|||
$size = 0;
|
||||
$quota = disk_free_space($this->path);
|
||||
|
||||
$tmp_file = '.tmp.' . sha1($target);
|
||||
$tmp_file = $this->path . '.tmp.' . sha1($target);
|
||||
$out = fopen($tmp_file, 'w');
|
||||
|
||||
while (!feof($pointer)) {
|
||||
|
|
Loading…
Reference in a new issue