aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-11-27 17:05:19 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-12-08 22:29:42 +0100
commitb01c59b2249d9624c9ff8df5d8db22039b845204 (patch)
tree7fad9e106ba7327998ed88a9b55fe3ee13d4f9aa /lib
parentd6da627eb44444618e5cd9ee29ef2cc4eacb0993 (diff)
downloadnextcloud-server-b01c59b2249d9624c9ff8df5d8db22039b845204.tar.gz
nextcloud-server-b01c59b2249d9624c9ff8df5d8db22039b845204.zip
use old methods and redirect in deprecated methods
Diffstat (limited to 'lib')
-rw-r--r--lib/private/allconfig.php4
-rw-r--r--lib/public/config.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php
index 295fb8b7668..e06879d4723 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 05a3f651b33..fc4df3f7567 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;
}