[Pkg-owncloud-commits] [owncloud-doc] 139/227: Renamed SystemValue to UserValue

David Prévot taffit at moszumanska.debian.org
Sat Oct 11 17:20:43 UTC 2014


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

taffit pushed a commit to branch master
in repository owncloud-doc.

commit c664173a89b690af4da6d6e0e58fcb5d9aa69df6
Author: arnovr <arnovanrossum1 at gmail.com>
Date:   Sun Sep 21 21:19:47 2014 +0200

    Renamed SystemValue to UserValue
    
    Methods where wrong, documentation claimed them setting and getting
    uservalues through SystemValue's
---
 developer_manual/app/configuration.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/developer_manual/app/configuration.rst b/developer_manual/app/configuration.rst
index 68515eb..15c2249 100644
--- a/developer_manual/app/configuration.rst
+++ b/developer_manual/app/configuration.rst
@@ -127,12 +127,12 @@ User values are saved in the database per user and app and are good for saving u
             $this->appName = $appName;
         }
 
-        public function getSystemValue($key, $userId) {
-            return $this->config->getSystemValue($userId, $this->appName, $key);
+        public function getUserValue($key, $userId) {
+            return $this->config->getUserValue($userId, $this->appName, $key);
         }
 
-        public function setSystemValue($key, $userId, $value) {
-            $this->config->setSystemValue($userId, $this->appName, $key, $value);
+        public function setUserValue($key, $userId, $value) {
+            $this->config->setUserValue($userId, $this->appName, $key, $value);
         }
 
     }
\ No newline at end of file

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



More information about the Pkg-owncloud-commits mailing list