diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-30 14:36:51 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-30 14:36:51 +0200 |
commit | a9cbbae0c8c6b8246897ce5d470e22f026774455 (patch) | |
tree | bce7e079d99f87d2a6090f933631573ebfc08e4b /program | |
parent | 6a3df52f828015756cd2e70435bdebd8cdfb2f4b (diff) |
Override default skin value read from user prefs
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_config.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index a0e914b78..aae3656a1 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -252,6 +252,11 @@ class rcube_config $prefs['timezone'] = timezone_name_from_abbr('', $prefs['timezone'] * 3600, 0); } + // larry is the new default skin :-) + if ($prefs['skin'] == 'default') { + $prefs['skin'] = 'larry'; + } + $this->userprefs = $prefs; $this->prop = array_merge($this->prop, $prefs); |