mirror of
https://github.com/kd2org/picodav.git
synced 2024-11-16 08:38:27 +01:00
Fix tempory file path
FossilOrigin-Name: 2339c70882e145e0dfbc54dd053f639ce964e1130b250ac8f5f16a985debef63
This commit is contained in:
parent
5728ce7727
commit
a8df502510
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