summaryrefslogtreecommitdiff
path: root/program/include/rcube_config.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-07-30 14:36:51 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-07-30 14:36:51 +0200
commita9cbbae0c8c6b8246897ce5d470e22f026774455 (patch)
treebce7e079d99f87d2a6090f933631573ebfc08e4b /program/include/rcube_config.php
parent6a3df52f828015756cd2e70435bdebd8cdfb2f4b (diff)
Override default skin value read from user prefs
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r--program/include/rcube_config.php5
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);