summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_template.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-15 10:37:08 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-15 10:37:08 +0000
commit1e0958207b8a6f9877b6e0b77b23e4fe0139e12f (patch)
treeb67f9c31707a33f0ae1d79111d26c8ff6efcadc9 /roundcubemail/program/include/rcube_template.php
parentfce0dd38958fd37cdd476823ea21a56c320c593e (diff)
- actually we don't need default_skin option
git-svn-id: https://svn.roundcube.net/trunk@1542 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_template.php')
-rwxr-xr-xroundcubemail/program/include/rcube_template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_template.php b/roundcubemail/program/include/rcube_template.php
index 9bc918e9a..6cf9a9ad4 100755
--- a/roundcubemail/program/include/rcube_template.php
+++ b/roundcubemail/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'];