summaryrefslogtreecommitdiff
path: root/program/include/rcube_config.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-06-18 07:13:04 +0000
committerthomascube <thomas@roundcube.net>2008-06-18 07:13:04 +0000
commit4230651565e386662a6931396c3d4a6b33b4f30d (patch)
tree70a2fbcc461ba19669b71217ba8adfd789268cc3 /program/include/rcube_config.php
parent1fb78c57ccd93c5fd58c2c42a82824dae738417c (diff)
Add fallback to old 'skin_path' property + indent with spaces instead of tabs
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r--program/include/rcube_config.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php
index 0ffb0d3fa..14316b8b8 100644
--- a/program/include/rcube_config.php
+++ b/program/include/rcube_config.php
@@ -60,9 +60,15 @@ class rcube_config
// load host-specific configuration
$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';
+
// fix paths
- $this->prop['skin'] = $this->prop['skin'] ? unslashify($this->prop['skin']) : 'default';
$this->prop['log_dir'] = $this->prop['log_dir'] ? unslashify($this->prop['log_dir']) : INSTALL_PATH . 'logs';
+ $this->prop['temp_dir'] = $this->prop['temp_dir'] ? unslashify($this->prop['temp_dir']) : INSTALL_PATH . 'temp';
// handle aliases
if (isset($this->prop['locale_string']) && empty($this->prop['language']))