From 273c776eb72641c837cb78955fd13d4de7246de4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 19 Aug 2015 16:26:33 +0200 Subject: add missing return statements in getSystem/getPersonalMountPoints --- apps/files_external/lib/config.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/files_external') 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; } /** -- cgit v1.2.3