diff options
author | alecpl <alec@alec.pl> | 2008-06-15 10:37:08 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-06-15 10:37:08 +0000 |
commit | 67effe9904d62880ab5bdaaf58b97af7113ed97f (patch) | |
tree | 1114fea966d75cbfd4a87210fc4c963e93915968 /program/include/rcube_config.php | |
parent | a7aa8cfca1da79d1160538afea9f4a111d70a989 (diff) |
- actually we don't need default_skin option
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r-- | program/include/rcube_config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index b862bf769..0ffb0d3fa 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -61,7 +61,7 @@ class rcube_config $this->load_host_config(); // fix paths - $this->prop['default_skin'] = $this->prop['default_skin'] ? unslashify($this->prop['default_skin']) : 'default'; + $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'; // handle aliases |