[Pkg-owncloud-commits] [owncloud] 13/22: Expose setSystemValue

David Prévot taffit at moszumanska.debian.org
Fri Aug 29 14:48:57 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 09ab1f16c08838ab0583e88c789c987f8eeb4a46
Author: Lukas Reschke <lukas at owncloud.com>
Date:   Fri Aug 22 15:53:23 2014 +0200

    Expose setSystemValue
---
 lib/private/allconfig.php | 7 +++----
 lib/public/iconfig.php    | 3 +--
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php
index de3ac97..eb11454 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
diff --git a/lib/public/iconfig.php b/lib/public/iconfig.php
index 0ebbd9f..d4a8cdc 100644
--- a/lib/public/iconfig.php
+++ b/lib/public/iconfig.php
@@ -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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list