diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-08-29 09:08:46 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-08-29 09:08:46 +0100 |
commit | bffccdbea7d2a9be399cff7d835bd1cce2e2a83e (patch) | |
tree | 25497babcf0434a3bc573ffd237bab0be0c68073 | |
parent | 359590d5763ba6e92c331258f4ac4284e67750d2 (diff) | |
download | nextcloud-server-bffccdbea7d2a9be399cff7d835bd1cce2e2a83e.tar.gz nextcloud-server-bffccdbea7d2a9be399cff7d835bd1cce2e2a83e.zip |
Add missing 'personal' mount configuration option
-rwxr-xr-x | apps/files_external/lib/config.php | 1 |
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']; |