diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-07-20 16:48:28 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-07-20 16:48:28 +0200 |
commit | 3c2967074f0d817bff8f1d511f08aa84a9d09bde (patch) | |
tree | 5bd0b428a686393e2aec57c70ccabd044730528f /apps/files_external/lib | |
parent | 1224d7ec01fc7ed7f273939aa88c356846648aa6 (diff) | |
download | nextcloud-server-3c2967074f0d817bff8f1d511f08aa84a9d09bde.tar.gz nextcloud-server-3c2967074f0d817bff8f1d511f08aa84a9d09bde.zip |
remove unused variable from dropbox filestorage backend
Diffstat (limited to 'apps/files_external/lib')
-rwxr-xr-x | apps/files_external/lib/dropbox.php | 2 |
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) { |