Commit 89adc137198a0e308510c4238250f9b393679526
1 parent
232a6b9f
Exists in
master
Fix getDataUrl API (cf. #11021)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/DDSERVICES/SOAP/DDserverWeb.php
... | ... | @@ -709,7 +709,7 @@ function getVIInfo($viId) |
709 | 709 | |
710 | 710 | function getDataUrl($dataSet, $StartTime, $StopTime) |
711 | 711 | { |
712 | - $tempFile = uniqid("temp"); | |
712 | + $tempFile = "/tmp/".uniqid("temp"); | |
713 | 713 | if (file_exists($tempFile)) unlink($tempFile); |
714 | 714 | |
715 | 715 | $referXML = baseDir."/DDsys.xml"; | ... | ... |