aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Database.class.php
diff options
context:
space:
mode:
authorLonnytunes <lonnytunes@gmx.fr>2014-01-20 00:44:51 +0100
committerLonnytunes <lonnytunes@gmx.fr>2014-01-20 00:44:51 +0100
commitd1d3498b62d00a88968378a3244ffd479a852b2e (patch)
treee8c852913d7cce96ecd4acda4cf342b52dcb64e2 /inc/poche/Database.class.php
parent1cecaa7926cee3d8e1ce4c6e369c52ad98d49e3f (diff)
downloadwallabag-d1d3498b62d00a88968378a3244ffd479a852b2e.tar.gz
wallabag-d1d3498b62d00a88968378a3244ffd479a852b2e.tar.zst
wallabag-d1d3498b62d00a88968378a3244ffd479a852b2e.zip
[fix] Stops multiplication, in database, of a same user config item (error of variable name).
Diffstat (limited to 'inc/poche/Database.class.php')
-rw-r--r--inc/poche/Database.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Database.class.php b/inc/poche/Database.class.php
index 04731821..48ec5abf 100644
--- a/inc/poche/Database.class.php
+++ b/inc/poche/Database.class.php
@@ -193,7 +193,7 @@ class Database {
193 public function updateUserConfig($userId, $key, $value) { 193 public function updateUserConfig($userId, $key, $value) {
194 $config = $this->getConfigUser($userId); 194 $config = $this->getConfigUser($userId);
195 195
196 if (!isset ($user_config[$key])) { 196 if (! isset($config[$key])) {
197 $sql = "INSERT INTO users_config (value, user_id, name) VALUES (?, ?, ?)"; 197 $sql = "INSERT INTO users_config (value, user_id, name) VALUES (?, ?, ?)";
198 } 198 }
199 else { 199 else {