Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Tetlow <uge_b2w@hotmail.com>2014-09-16 22:14:31 +0400
committerEugene Tetlow <uge_b2w@hotmail.com>2014-09-16 22:14:31 +0400
commit96675177bdd08f8001012ba7871cce97451f73bb (patch)
tree53d7a5ed6e301f10870b0629b3f9e8c09da03499 /files_archive
parentca22de20c8ee93ae9012db2873730d60dae0b612 (diff)
Update storage.php
Change line 141 from private to protected same as parent. Now works fine in OC7
Diffstat (limited to 'files_archive')
-rw-r--r--files_archive/lib/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files_archive/lib/storage.php b/files_archive/lib/storage.php
index 9abe1605a..80a68204a 100644
--- a/files_archive/lib/storage.php
+++ b/files_archive/lib/storage.php
@@ -138,7 +138,7 @@ class Archive extends Common {
}
}
- private function toTmpFile($path) {
+ protected function toTmpFile($path) {
$tmpFile = \OCP\Files::tmpFile();
$this->archive->extractFile($path, $tmpFile);
return $tmpFile;