diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-30 12:04:43 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-30 12:04:43 +0200 |
commit | 9f1652e29e2ed8be815cae4abf42bde989ffeb22 (patch) | |
tree | 96b88bdbc518fa5f47f333ffea486baffbb546aa /plugins/jqueryui/jqueryui.php | |
parent | c40419bdfe866932fecf9fcb1f552312c669c228 (diff) |
Adapt to new default skin folder namimg
Diffstat (limited to 'plugins/jqueryui/jqueryui.php')
-rw-r--r-- | plugins/jqueryui/jqueryui.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/jqueryui/jqueryui.php b/plugins/jqueryui/jqueryui.php index 69b9ca1c0..f82a149b8 100644 --- a/plugins/jqueryui/jqueryui.php +++ b/plugins/jqueryui/jqueryui.php @@ -24,7 +24,7 @@ class jqueryui extends rcube_plugin $this->include_script("js/jquery-ui-$version.custom.min.js"); // include UI stylesheet - $skin = $rcmail->config->get('skin', 'default'); + $skin = $rcmail->config->get('skin'); $ui_map = $rcmail->config->get('jquery_ui_skin_map', array()); $ui_theme = $ui_map[$skin] ? $ui_map[$skin] : $skin; @@ -32,7 +32,7 @@ class jqueryui extends rcube_plugin $this->include_stylesheet("themes/$ui_theme/jquery-ui-$version.custom.css"); } else { - $this->include_stylesheet("themes/default/jquery-ui-$version.custom.css"); + $this->include_stylesheet("themes/larry/jquery-ui-$version.custom.css"); } // jquery UI localization |