diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-16 15:37:12 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-16 15:37:12 +0100 |
commit | 06b2446269f16035444eea1335e13b355a48e442 (patch) | |
tree | 54b7f08b44ae6bac993d0a21a437e3c460720830 /lib/private/allconfig.php | |
parent | 1075914f8ab8f5f4c20ab7f0b9ce35e9a9e2ffe1 (diff) | |
download | nextcloud-server-06b2446269f16035444eea1335e13b355a48e442.tar.gz nextcloud-server-06b2446269f16035444eea1335e13b355a48e442.zip |
The key is over configkey, user and app, not the value
stupid me :(
Diffstat (limited to 'lib/private/allconfig.php')
-rw-r--r-- | lib/private/allconfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index b8bba7986e6..8d4f13e5b9c 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -196,7 +196,7 @@ class AllConfig implements \OCP\IConfig { 'userid' => $userId, 'appid' => $appName, 'configkey' => $key, - ], ['configvalue', 'userid', 'appid']); + ], ['configkey', 'userid', 'appid']); $affectedRows = 1; } elseif ($exists) { $data = array($value, $userId, $appName, $key); |