From: Robin Appelman Date: Mon, 19 Jan 2015 15:25:28 +0000 (+0100) Subject: Make getSourcePath accessible for storage wrappers X-Git-Tag: v8.1.0alpha1~15^2~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c4ec8fbeff926e459317829695af1354b4c8ad61;p=nextcloud-server.git Make getSourcePath accessible for storage wrappers --- 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; }