summaryrefslogtreecommitdiff
path: root/program/include/rcube_output_html.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-06-14 10:59:12 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-06-14 10:59:12 +0200
commit207d618c22f6e50cf1dff983791282afe9f267ce (patch)
tree09d127b4f82c90a33bc24043d389eeb143432f6f /program/include/rcube_output_html.php
parente10faba00057d03e28b48720f76ca4e469ef1c71 (diff)
parent90a713e8823cf8fefb25280f9d155f69b2227303 (diff)
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/include/rcube_output_html.php')
-rw-r--r--program/include/rcube_output_html.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/rcube_output_html.php b/program/include/rcube_output_html.php
index fce9615cf..7ceea1839 100644
--- a/program/include/rcube_output_html.php
+++ b/program/include/rcube_output_html.php
@@ -68,7 +68,9 @@ class rcube_output_html extends rcube_output
$this->set_env('x_frame_options', $this->config->get('x_frame_options', 'sameorigin'));
// load the correct skin (in case user-defined)
- $this->set_skin($this->config->get('skin'));
+ $skin = $this->config->get('skin');
+ $this->set_skin($skin);
+ $this->set_env('skin', $skin);
// add common javascripts
$this->add_script('var '.rcmail::JS_OBJECT_NAME.' = new rcube_webmail();', 'head_top');