summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-08-19 16:26:33 +0200
committerRobin Appelman <icewind@owncloud.com>2015-08-19 16:26:33 +0200
commit273c776eb72641c837cb78955fd13d4de7246de4 (patch)
tree7ce5295bea2daf896c078ae6873e95ff39fee6e4 /apps/files_external
parent5fd36d017ecdbce61dcf1c67ae04c8c0be81a4bf (diff)
downloadnextcloud-server-273c776eb72641c837cb78955fd13d4de7246de4.tar.gz
nextcloud-server-273c776eb72641c837cb78955fd13d4de7246de4.zip
add missing return statements in getSystem/getPersonalMountPoints
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/config.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 91c33ef10a5..390f51bfa71 100644
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -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;
}
/**