Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2019-09-08 12:37:16 +0300
committerAleksander Machniak <alec@alec.pl>2019-09-08 12:37:16 +0300
commitb10a0dbb7eaa3c8cf8352dd3125b25818cd811d8 (patch)
tree557226a24328554af693ba8aacb4711cd7b882ed /program/include/rcmail.php
parent5373f1839d2859591c1a695f4818f0b524707969 (diff)
Reset internal $skins property is set_skin()
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 5980bf21f..e61b12f7e 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -99,12 +99,12 @@ class rcmail extends rcube
$required_plugins = array('filesystem_attachments', 'jqueryui');
$this->plugins->load_plugins($plugins, $required_plugins);
- // Remember default skin, before it's replaced by user prefs
- $this->default_skin = $this->config->get('skin');
-
// start session
$this->session_init();
+ // Remember default skin, before it's replaced by user prefs
+ $this->default_skin = $this->config->get('skin');
+
// create user object
$this->set_user(new rcube_user($_SESSION['user_id']));