diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-07-30 13:20:56 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-07-30 13:20:56 +0200 |
commit | bc92ca56ef6c51393d2782b7654eaa162dfc2e10 (patch) | |
tree | 4e736a5fa6d757d6abd28f14facf8c71faef89a1 /plugins/help | |
parent | 6a3df52f828015756cd2e70435bdebd8cdfb2f4b (diff) |
Fixes after default->classic switch
Diffstat (limited to 'plugins/help')
-rw-r--r-- | plugins/help/help.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/help/help.php b/plugins/help/help.php index ad7dbf0ba..1a76cbbda 100644 --- a/plugins/help/help.php +++ b/plugins/help/help.php @@ -42,12 +42,11 @@ class help extends rcube_plugin 'label' => 'help.help', ), 'taskbar'); - $skin = $rcmail->config->get('skin'); - if (!file_exists($this->home."/skins/$skin/help.css")) - $skin = 'default'; - - // add style for taskbar button (must be here) and Help UI - $this->include_stylesheet("skins/$skin/help.css"); + // add style for taskbar button (must be here) and Help UI + $skin_path = $this->local_skin_path(); + if (is_file($this->home . "/$skin_path/help.css")) { + $this->include_stylesheet("$skin_path/help.css"); + } } function action() |