diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index 295fb8b766..e06879d472 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -106,7 +106,7 @@ class AllConfig implements \OCP\IConfig { * @param string $value the value that you want to store */ public function setUserValue($userId, $appName, $key, $value) { - \OCP\Config::setUserValue($userId, $appName, $key, $value); + \OC_Preferences::setValue($userId, $appName, $key, $value); } /** @@ -119,7 +119,7 @@ class AllConfig implements \OCP\IConfig { * @return string */ public function getUserValue($userId, $appName, $key, $default = '') { - return \OCP\Config::getUserValue($userId, $appName, $key, $default); + return \OC_Preferences::getValue($userId, $appName, $key, $default); } /** diff --git a/lib/public/config.php b/lib/public/config.php index 05a3f651b3..fc4df3f756 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -131,7 +131,7 @@ class Config { * not exist the default value will be returned */ public static function getUserValue( $user, $app, $key, $default = null ) { - return \OC_Preferences::getValue( $user, $app, $key, $default ); + return \OC::$server->getConfig()->getUserValue( $user, $app, $key, $default ); } /** @@ -148,7 +148,7 @@ class Config { */ public static function setUserValue( $user, $app, $key, $value ) { try { - \OC_Preferences::setValue( $user, $app, $key, $value ); + \OC::$server->getConfig()->setUserValue( $user, $app, $key, $value ); } catch (\Exception $e) { return false; }