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_template.php | |
parent | a7aa8cfca1da79d1160538afea9f4a111d70a989 (diff) |
- actually we don't need default_skin option
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-x | program/include/rcube_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 9bc918e9a..6cf9a9ad4 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -59,7 +59,7 @@ class rcube_template extends rcube_html_page // load the correct skin (in case user-defined) if (empty($this->config['skin']) || !is_readable('skins/'.$this->config['skin'])) - $this->config['skin'] = $this->config['default_skin']; + $this->config['skin'] = 'default'; $this->config['skin_path'] = 'skins/'.$this->config['skin']; |