summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-07-20 16:48:28 +0200
committerRobin Appelman <icewind@owncloud.com>2012-07-20 16:48:28 +0200
commit3c2967074f0d817bff8f1d511f08aa84a9d09bde (patch)
tree5bd0b428a686393e2aec57c70ccabd044730528f /apps/files_external/lib
parent1224d7ec01fc7ed7f273939aa88c356846648aa6 (diff)
downloadnextcloud-server-3c2967074f0d817bff8f1d511f08aa84a9d09bde.tar.gz
nextcloud-server-3c2967074f0d817bff8f1d511f08aa84a9d09bde.zip
remove unused variable from dropbox filestorage backend
Diffstat (limited to 'apps/files_external/lib')
-rwxr-xr-xapps/files_external/lib/dropbox.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/dropbox.php b/apps/files_external/lib/dropbox.php
index 35663d431f8..c849db38433 100755
--- a/apps/files_external/lib/dropbox.php
+++ b/apps/files_external/lib/dropbox.php
@@ -208,7 +208,7 @@ class OC_Filestorage_Dropbox extends OC_Filestorage_Common {
if (isset(self::$tempFiles[$tmpFile])) {
$handle = fopen($tmpFile, 'r');
try {
- $response = $this->dropbox->putFile(self::$tempFiles[$tmpFile], $handle);
+ $this->dropbox->putFile(self::$tempFiles[$tmpFile], $handle);
unlink($tmpFile);
} catch (Exception $exception) {