From e6dcb9432acd9770ed73b003a239f2ba75b8617a Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 18 Jun 2008 07:13:04 +0000 Subject: Add fallback to old 'skin_path' property + indent with spaces instead of tabs git-svn-id: https://svn.roundcube.net/trunk@1558 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_config.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'roundcubemail/program/include/rcube_config.php') diff --git a/roundcubemail/program/include/rcube_config.php b/roundcubemail/program/include/rcube_config.php index 0ffb0d3fa..14316b8b8 100644 --- a/roundcubemail/program/include/rcube_config.php +++ b/roundcubemail/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'])) -- cgit v1.2.3