diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-08-22 15:53:23 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-08-22 15:53:23 +0200 |
commit | 88c3a4a31ae09b4822cff6d6965f0c39becb5b97 (patch) | |
tree | 82311d0fca1bc9a590a4d4e8dc1e386aa889d554 /lib/private/allconfig.php | |
parent | 97b536e3dfd35d1e51ecf866ccb433745c33309a (diff) | |
download | nextcloud-server-88c3a4a31ae09b4822cff6d6965f0c39becb5b97.tar.gz nextcloud-server-88c3a4a31ae09b4822cff6d6965f0c39becb5b97.zip |
Expose setSystemValue
Diffstat (limited to 'lib/private/allconfig.php')
-rw-r--r-- | lib/private/allconfig.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index de3ac973637..eb114546010 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -18,11 +18,10 @@ class AllConfig implements \OCP\IConfig { * * @param string $key the key of the value, under which will be saved * @param mixed $value the value that should be stored - * @todo need a use case for this */ -// public function setSystemValue($key, $value) { -// \OCP\Config::setSystemValue($key, $value); -// } + public function setSystemValue($key, $value) { + \OCP\Config::setSystemValue($key, $value); + } /** * Looks up a system wide defined value |