Expose setSystemValue

remotes/origin/fix-10825
Lukas Reschke 12 years ago
parent 97b536e3df
commit 88c3a4a31a
  1. 7
      lib/private/allconfig.php
  2. 3
      lib/public/iconfig.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

@ -39,9 +39,8 @@ interface 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);
public function setSystemValue($key, $value);
/**
* Looks up a system wide defined value

Loading…
Cancel
Save