summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-01-19 16:25:28 +0100
committerRobin Appelman <icewind@owncloud.com>2015-04-13 15:13:03 +0200
commitc4ec8fbeff926e459317829695af1354b4c8ad61 (patch)
treeb616d5ee6f059ed2f8bbe21a67908fb5236547ad
parentd16ee4138d80c757485b67abad4ecaa8146cc1a3 (diff)
downloadnextcloud-server-c4ec8fbeff926e459317829695af1354b4c8ad61.tar.gz
nextcloud-server-c4ec8fbeff926e459317829695af1354b4c8ad61.zip
Make getSourcePath accessible for storage wrappers
-rw-r--r--lib/private/files/storage/local.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php
index 8815361bc1d..175b33b0329 100644
--- a/lib/private/files/storage/local.php
+++ b/lib/private/files/storage/local.php
@@ -322,7 +322,7 @@ if (\OC_Util::runningOnWindows()) {
* @param string $path
* @return string
*/
- protected function getSourcePath($path) {
+ public function getSourcePath($path) {
$fullPath = $this->datadir . $path;
return $fullPath;
}