summaryrefslogtreecommitdiff
path: root/program/include/rcube_config.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-06-14 10:59:12 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-06-14 10:59:12 +0200
commit207d618c22f6e50cf1dff983791282afe9f267ce (patch)
tree09d127b4f82c90a33bc24043d389eeb143432f6f /program/include/rcube_config.php
parente10faba00057d03e28b48720f76ca4e469ef1c71 (diff)
parent90a713e8823cf8fefb25280f9d155f69b2227303 (diff)
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r--program/include/rcube_config.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php
index 34c61c58d..1b621e0fc 100644
--- a/program/include/rcube_config.php
+++ b/program/include/rcube_config.php
@@ -71,10 +71,14 @@ class rcube_config
$this->load_host_config();
// set skin (with fallback to old 'skin_path' property)
- if (empty($this->prop['skin']) && !empty($this->prop['skin_path']))
- $this->prop['skin'] = str_replace('skins/', '', unslashify($this->prop['skin_path']));
- else if (empty($this->prop['skin']))
- $this->prop['skin'] = 'default';
+ if (empty($this->prop['skin'])) {
+ if (!empty($this->prop['skin_path'])) {
+ $this->prop['skin'] = str_replace('skins/', '', unslashify($this->prop['skin_path']));
+ }
+ else {
+ $this->prop['skin'] = 'default';
+ }
+ }
// fix paths
$this->prop['log_dir'] = $this->prop['log_dir'] ? realpath(unslashify($this->prop['log_dir'])) : INSTALL_PATH . 'logs';