From 4e65889f54836e8f01af0b1b59879a8e6b739f27 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Fri, 13 Jun 2014 15:49:40 +0200 Subject: only use one config option 'objectstore' for root and home storage configuration --- lib/private/files/filesystem.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/private/files/filesystem.php') 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(); -- cgit v1.2.3