diff options
author | Robin Appelman <robin@icewind.nl> | 2015-08-19 19:31:36 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2015-08-19 19:31:36 +0200 |
commit | 9dda39bf488b60376b0de8728a61e6fe9f58cdbe (patch) | |
tree | f75a521b3a580a5b16ba4c67aaff362d65236bd0 | |
parent | 313cb092f9eed4448916c53d82ea5ee01def8956 (diff) | |
parent | 273c776eb72641c837cb78955fd13d4de7246de4 (diff) | |
download | nextcloud-server-9dda39bf488b60376b0de8728a61e6fe9f58cdbe.tar.gz nextcloud-server-9dda39bf488b60376b0de8728a61e6fe9f58cdbe.zip |
Merge pull request #18433 from owncloud/get-mountpoints-return
add missing return statements in getSystem/getPersonalMountPoints
-rw-r--r-- | apps/files_external/lib/config.php | 4 |
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; } /** |