summaryrefslogtreecommitdiff
path: root/program/include/rcube_template.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-06-15 10:37:08 +0000
committeralecpl <alec@alec.pl>2008-06-15 10:37:08 +0000
commit67effe9904d62880ab5bdaaf58b97af7113ed97f (patch)
tree1114fea966d75cbfd4a87210fc4c963e93915968 /program/include/rcube_template.php
parenta7aa8cfca1da79d1160538afea9f4a111d70a989 (diff)
- actually we don't need default_skin option
Diffstat (limited to 'program/include/rcube_template.php')
-rwxr-xr-xprogram/include/rcube_template.php2
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'];