summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-03-20 12:52:09 +0100
committerRobin Appelman <icewind@owncloud.com>2014-03-20 12:52:09 +0100
commitcf23defa5274fdd7d73d7ca3b68c7e366f8f0706 (patch)
tree389bd78a88f3fb73ae6c2c32d832bf8260437c85 /apps
parent9116c39a829ef10745acea5f3e9a4d47433ffa47 (diff)
downloadnextcloud-server-cf23defa5274fdd7d73d7ca3b68c7e366f8f0706.tar.gz
nextcloud-server-cf23defa5274fdd7d73d7ca3b68c7e366f8f0706.zip
Fix typo in mount loading
Diffstat (limited to 'apps')
-rwxr-xr-xapps/files_external/lib/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 9b2cb0d0b0e..dbb12ecd9bb 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);
}
}