]> source.dussan.org Git - nextcloud-server.git/commitdiff
remove unused variable and fix undefined variable
authorThomas Müller <thomas.mueller@tmit.eu>
Thu, 8 Jan 2015 08:46:40 +0000 (09:46 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Thu, 8 Jan 2015 08:46:40 +0000 (09:46 +0100)
lib/private/connector/sabre/file.php

index cd05db8e12a9872daa0c8bdef62c1fb674849cbc..0f5a3315f8f7acad27a54f00e5263e5f4e943158 100644 (file)
@@ -74,7 +74,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements \Sabre\
                        return $this->createFileChunked($data);
                }
 
-               list($storage, $internalPath) = $this->fileView->resolvePath($this->path);
+               list($storage, ) = $this->fileView->resolvePath($this->path);
                $needsPartFile = $this->needsPartFile($storage);
 
                if ($needsPartFile) {
@@ -277,17 +277,17 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements \Sabre\
                }
 
                if ($chunk_handler->isComplete()) {
-                       list($storage, $internalPath) = $this->fileView->resolvePath($path);
+                       list($storage, ) = $this->fileView->resolvePath($path);
                        $needsPartFile = $this->needsPartFile($storage);
 
                        try {
+                               $targetPath = $path . '/' . $info['name'];
                                if ($needsPartFile) {
                                        // we first assembly the target file as a part file
                                        $partFile = $path . '/' . $info['name'] . '.ocTransferId' . $info['transferid'] . '.part';
                                        $chunk_handler->file_assemble($partFile);
 
                                        // here is the final atomic rename
-                                       $targetPath = $path . '/' . $info['name'];
                                        $renameOkay = $this->fileView->rename($partFile, $targetPath);
                                        $fileExists = $this->fileView->file_exists($targetPath);
                                        if ($renameOkay === false || $fileExists === false) {
@@ -300,8 +300,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements \Sabre\
                                        }
                                } else {
                                        // assemble directly into the final file
-                                       $partFile = $path . '/' . $info['name'];
-                                       $chunk_handler->file_assemble($partFile);
+                                       $chunk_handler->file_assemble($targetPath);
                                }
 
                                // allow sync clients to send the mtime along in a header