Merge pull request #18433 from owncloud/get-mountpoints-return

add missing return statements in getSystem/getPersonalMountPoints
This commit is contained in:
Robin Appelman 2015-08-19 19:31:36 +02:00
commit 9dda39bf48

View file

@ -165,6 +165,8 @@ class OC_Mount_Config {
foreach ($service->getAllStorages() as $storage) {
$mountPoints[] = self::prepareMountPointEntry($storage, false);
}
return $mountPoints;
}
/**
@ -181,6 +183,8 @@ class OC_Mount_Config {
foreach ($service->getAllStorages() as $storage) {
$mountPoints[] = self::prepareMountPointEntry($storage, true);
}
return $mountPoints;
}
/**