diff options
author | thomascube <thomas@roundcube.net> | 2010-02-18 18:01:53 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-02-18 18:01:53 +0000 |
commit | b545d3e8388d18a64d50b6f7879804cf4e7812ca (patch) | |
tree | 2f77722307e65126464f77de9cd6e8ec5ed7dbad /program/include/rcube_user.php | |
parent | 030db5b6c0489158b5a4cf1ab6d2542db0519de8 (diff) |
Fix loading of plugin configs: user prefs will always survive (#1486368)
Diffstat (limited to 'program/include/rcube_user.php')
-rw-r--r-- | program/include/rcube_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_user.php b/program/include/rcube_user.php index 54987098e..41a8bb531 100644 --- a/program/include/rcube_user.php +++ b/program/include/rcube_user.php @@ -123,7 +123,7 @@ class rcube_user $this->language = $_SESSION['language']; if ($this->db->affected_rows()) { - $config->merge($a_user_prefs); + $config->set_user_prefs($a_user_prefs); return true; } |