diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-19 10:52:35 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-19 10:52:35 +0100 |
commit | 47a300814186061991821f8a707c63a3de636b6d (patch) | |
tree | 8db21adb6842f60faab6505422566896228aeff9 /lib/private/Archive | |
parent | 63bc633d89e53c2ff04d3fd521a2a1b18f6737f7 (diff) | |
download | nextcloud-server-47a300814186061991821f8a707c63a3de636b6d.tar.gz nextcloud-server-47a300814186061991821f8a707c63a3de636b6d.zip |
Remove \OCP\Files::tmpFile
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Archive')
-rw-r--r-- | lib/private/Archive/TAR.php | 2 | ||||
-rw-r--r-- | lib/private/Archive/ZIP.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Archive/TAR.php b/lib/private/Archive/TAR.php index f37da6fc52d..c9396673399 100644 --- a/lib/private/Archive/TAR.php +++ b/lib/private/Archive/TAR.php @@ -346,7 +346,7 @@ class TAR extends Archive { } else { $ext = ''; } - $tmpFile = \OCP\Files::tmpFile($ext); + $tmpFile = \OC::$server->getTempManager()->getTemporaryFile($ext); if ($this->fileExists($path)) { $this->extractFile($path, $tmpFile); } elseif ($mode == 'r' or $mode == 'rb') { diff --git a/lib/private/Archive/ZIP.php b/lib/private/Archive/ZIP.php index fb3e2fdde97..fb727aba224 100644 --- a/lib/private/Archive/ZIP.php +++ b/lib/private/Archive/ZIP.php @@ -198,7 +198,7 @@ class ZIP extends Archive{ }else{ $ext=''; } - $tmpFile=\OCP\Files::tmpFile($ext); + $tmpFile = \OC::$server->getTempManager()->getTemporaryFile($ext); if($this->fileExists($path)) { $this->extractFile($path, $tmpFile); } |