From cf23defa5274fdd7d73d7ca3b68c7e366f8f0706 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Thu, 20 Mar 2014 12:52:09 +0100
Subject: [PATCH] Fix typo in mount loading

---
 apps/files_external/lib/config.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 9b2cb0d0b0..dbb12ecd9b 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -173,7 +173,7 @@ class OC_Mount_Config {
 	 */
 	public static function initMountPointsHook($data) {
 		$mountPoints = self::getAbsoluteMountPoints($data['user']);
-		foreach ($mountPoints as $mountPoints => $options) {
+		foreach ($mountPoints as $mountPoint => $options) {
 			\OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint);
 		}
 	}
-- 
GitLab