summaryrefslogtreecommitdiff
path: root/program/include/rcmail.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-02-18 18:01:53 +0000
committerthomascube <thomas@roundcube.net>2010-02-18 18:01:53 +0000
commitb545d3e8388d18a64d50b6f7879804cf4e7812ca (patch)
tree2f77722307e65126464f77de9cd6e8ec5ed7dbad /program/include/rcmail.php
parent030db5b6c0489158b5a4cf1ab6d2542db0519de8 (diff)
Fix loading of plugin configs: user prefs will always survive (#1486368)
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 68ab5004c..5d20989b2 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -178,7 +178,7 @@ class rcmail
$GLOBALS['USER'] = $this->user;
// overwrite config with user preferences
- $this->config->merge((array)$this->user->get_prefs());
+ $this->config->set_user_prefs((array)$this->user->get_prefs());
}
$_SESSION['language'] = $this->user->language = $this->language_prop($this->config->get('language', $_SESSION['language']));