normalize path before comparison to make sure that we always find the mount point

This commit is contained in:
Bjoern Schiessle 2014-06-27 12:20:29 +02:00
parent 1a3e698294
commit 706a8ace58
1 changed files with 2 additions and 1 deletions

View File

@ -1493,10 +1493,11 @@ class Util {
* @return boolean
*/
public function isSystemWideMountPoint($path) {
$normalizedPath = ltrim($path, '/');
if (\OCP\App::isEnabled("files_external")) {
$mount = \OC_Mount_Config::getSystemMountPoints();
foreach ($mount as $mountPoint => $data) {
if ($mountPoint == substr($path, 1, strlen($mountPoint))) {
if ($mountPoint == substr($normalizedPath, 0, strlen($mountPoint))) {
return true;
}
}