summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-08-29 11:59:34 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-08-29 11:59:34 +0200
commit2b63c375a4bcd232635305fd7e93fa256f0307cf (patch)
treec74c3e183a4c9f6e13f46dd6f5e62d668ca9fe40 /apps/files_external
parent67d9c7f7f7eff6f494741cf78966f785db3a5dac (diff)
parentbffccdbea7d2a9be399cff7d835bd1cce2e2a83e (diff)
downloadnextcloud-server-2b63c375a4bcd232635305fd7e93fa256f0307cf.tar.gz
nextcloud-server-2b63c375a4bcd232635305fd7e93fa256f0307cf.zip
Merge pull request #10719 from owncloud/files-external-personal-undefined
Prevent undefined index error loading external storages
Diffstat (limited to 'apps/files_external')
-rwxr-xr-xapps/files_external/lib/config.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index c71132d0a5a..85e36fd9043 100755
--- a/apps/files_external/lib/config.php
+++ b/apps/files_external/lib/config.php
@@ -169,6 +169,7 @@ class OC_Mount_Config {
foreach ($options as &$option) {
$option = self::setUserVars($user, $option);
}
+ $options['personal'] = false;
$options['options'] = self::decryptPasswords($options['options']);
if (!isset($options['priority'])) {
$options['priority'] = $backends[$options['class']]['priority'];