From c4ec8fbeff926e459317829695af1354b4c8ad61 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 19 Jan 2015 16:25:28 +0100 Subject: [PATCH] Make getSourcePath accessible for storage wrappers --- lib/private/files/storage/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index 8815361bc1..175b33b032 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; }