diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-18 18:01:00 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-18 18:01:00 +0200 |
commit | f26f73a1a3e55095099958a3647b0e1b4f665d0b (patch) | |
tree | 56efbf2102dc9901df896859cea92f07682f4d03 /plugins/hide_blockquote/hide_blockquote.php | |
parent | 408d14185788fc852d277c5cda5e405a09b533d0 (diff) |
More default->larry fixes
Conflicts:
program/include/rcube_plugin.php
Diffstat (limited to 'plugins/hide_blockquote/hide_blockquote.php')
-rw-r--r-- | plugins/hide_blockquote/hide_blockquote.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/hide_blockquote/hide_blockquote.php b/plugins/hide_blockquote/hide_blockquote.php index ca0273a5d..7af163dcd 100644 --- a/plugins/hide_blockquote/hide_blockquote.php +++ b/plugins/hide_blockquote/hide_blockquote.php @@ -27,11 +27,7 @@ class hide_blockquote extends rcube_plugin && ($limit = $rcmail->config->get('hide_blockquote_limit')) ) { // include styles - $skin = $rcmail->config->get('skin'); - if (!file_exists($this->home."/skins/$skin/style.css")) { - $skin = 'default'; - } - $this->include_stylesheet("skins/$skin/style.css"); + $this->include_stylesheet($this->local_skin_path() . "/style.css"); // Script and localization $this->include_script('hide_blockquote.js'); |