mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-24 10:01:02 +00:00
Merge pull request #410 from Lonnytunes/dev
Fix: stops multiplication, in database, of a same user config item
This commit is contained in:
commit
3ae345b3d7
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ class Database {
|
|||
public function updateUserConfig($userId, $key, $value) {
|
||||
$config = $this->getConfigUser($userId);
|
||||
|
||||
if (!isset ($user_config[$key])) {
|
||||
if (! isset($config[$key])) {
|
||||
$sql = "INSERT INTO users_config (value, user_id, name) VALUES (?, ?, ?)";
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue