From 68b9f365b38fe68848eedf81a9eaad7810f51b0b Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 9 Aug 2012 21:56:00 +0200 Subject: Replace some forgotten references to skins/default (#1488591) Conflicts: program/include/rcube_config.php program/include/rcube_template.php --- .htaccess | 2 +- CHANGELOG | 1 + program/include/rcube_config.php | 10 +++++++--- program/include/rcube_template.php | 2 +- skins/classic/ie6hacks.css | 2 +- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.htaccess b/.htaccess index 82afe76de..25e153f8c 100644 --- a/.htaccess +++ b/.htaccess @@ -28,7 +28,7 @@ php_value mbstring.func_overload 0 RewriteEngine On -RewriteRule ^favicon\.ico$ skins/default/images/favicon.ico +RewriteRule ^favicon\.ico$ skins/larry/images/favicon.ico # security rules RewriteRule .git - [F] RewriteRule ^/?(README(.md)?|INSTALL|LICENSE|SQL|bin|CHANGELOG)$ - [F] diff --git a/CHANGELOG b/CHANGELOG index d105140b6..2a6f08c65 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix fallback to Larry skin when configured skin isn't available (#1488591) - Fix (workaround) delete operations with some versions of memcache (#1488592) - Fix (disable) request validation for spell and spell_html actions diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 3788f121a..826c70016 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -29,6 +29,8 @@ */ class rcube_config { + const DEFAULT_SKIN = 'larry'; + private $prop = array(); private $errors = array(); private $userprefs = array(); @@ -74,14 +76,15 @@ class rcube_config $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'] = 'larry'; + $this->prop['skin'] = self::DEFAULT_SKIN; // larry is the new default skin :-) if ($this->prop['skin'] == 'default') - $this->prop['skin'] = 'larry'; + $this->prop['skin'] = self::DEFAULT_SKIN; // fix paths $this->prop['log_dir'] = $this->prop['log_dir'] ? realpath(unslashify($this->prop['log_dir'])) : INSTALL_PATH . 'logs'; @@ -251,8 +254,9 @@ class rcube_config } // larry is the new default skin :-) + if ($prefs['skin'] == 'default') - $prefs['skin'] = 'larry'; + $prefs['skin'] = self::DEFAULT_SKIN; $this->userprefs = $prefs; $this->prop = array_merge($this->prop, $prefs); diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 24915f093..8efb5c9da 100644 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -158,7 +158,7 @@ class rcube_template extends rcube_html_page $valid = true; } else { - $skin_path = $this->config['skin_path'] ? $this->config['skin_path'] : 'skins/default'; + $skin_path = $this->config['skin_path'] ? $this->config['skin_path'] : rcube_config::DEFAULT_SKIN; $valid = !$skin; } diff --git a/skins/classic/ie6hacks.css b/skins/classic/ie6hacks.css index 53a2e5e1d..ac953867a 100644 --- a/skins/classic/ie6hacks.css +++ b/skins/classic/ie6hacks.css @@ -7,7 +7,7 @@ img { - behavior: url(skins/default/pngbehavior.htc); + behavior: url(skins/classic/pngbehavior.htc); } #logo -- cgit v1.2.3