diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-08-22 17:12:17 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-08-22 17:12:17 +0200 |
commit | a77d468d3568055ee85dd9508a2f009cb5da650f (patch) | |
tree | bf76ca296b9589693f9ac522cca1eff94f4eb60f /lib/private | |
parent | 620610a3a7ac57fc43dc232bca9b74ac709f1ca5 (diff) | |
parent | dd871098c5f598326a1bc03f8b7bed0d2184e798 (diff) | |
download | nextcloud-server-a77d468d3568055ee85dd9508a2f009cb5da650f.tar.gz nextcloud-server-a77d468d3568055ee85dd9508a2f009cb5da650f.zip |
Merge pull request #10584 from owncloud/simple-wizard-trusted-domains
Add a trusted domain wizard
Diffstat (limited to 'lib/private')
-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 |