aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/files/filesystem.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-06-13 15:49:40 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-06-18 12:53:20 +0200
commit4e65889f54836e8f01af0b1b59879a8e6b739f27 (patch)
treef72b947c8e7cff913ec42cbe769bdd7afd5fb7f4 /lib/private/files/filesystem.php
parent7493ff062410093eca753780b7d226c63427d274 (diff)
downloadnextcloud-server-4e65889f54836e8f01af0b1b59879a8e6b739f27.tar.gz
nextcloud-server-4e65889f54836e8f01af0b1b59879a8e6b739f27.zip
only use one config option 'objectstore' for root and home storage configuration
Diffstat (limited to 'lib/private/files/filesystem.php')
-rw-r--r--lib/private/files/filesystem.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php
index f5a7060ec90..71d70bbf2a5 100644
--- a/lib/private/files/filesystem.php
+++ b/lib/private/files/filesystem.php
@@ -325,14 +325,14 @@ class Filesystem {
$userObject = \OC_User::getManager()->get($user);
if (!is_null($userObject)) {
- $homeStorage = \OC_Config::getValue( 'home_storage', array(
+ $homeStorage = \OC_Config::getValue( 'objectstore', array(
//default home storage configuration:
'class' => '\OC\Files\Storage\Home',
'arguments' => array()
));
// sanity checks
if (empty($homeStorage['class'])) {
- \OCP\Util::writeLog('files', 'No class given for home_storage', \OCP\Util::ERROR);
+ \OCP\Util::writeLog('files', 'No class given for objectstore', \OCP\Util::ERROR);
}
if (!isset($homeStorage['arguments'])) {
$homeStorage['arguments'] = array();