diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-30 14:26:41 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-30 14:26:41 +0200 |
commit | 3185f3a52404baacaef29e4ace534c97e5ddc931 (patch) | |
tree | 1b36471f9f44a73f0b3708ec4ccbb0cbee6fb7bb /plugins/jqueryui/jqueryui.php | |
parent | c2d19b7f2439c250b4f6d4edca4840df2982973a (diff) |
Backported default -> classic skin renaming
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 |