summaryrefslogtreecommitdiff
path: root/program/include/rcmail_output_html.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-03-24 11:52:55 +0100
committerThomas Bruederli <thomas@roundcube.net>2013-03-24 11:52:55 +0100
commit17573916bcb4281b15f1acb27e4fae782ad52d2a (patch)
tree3e168acd2ccc1552fb268043e56495e843db7d04 /program/include/rcmail_output_html.php
parent99cfba2e26a6a05190d45c287e7613485bd6833d (diff)
Ensure backwards compatibility by considering old-style skin_path attribute for <roundcube:include ...> tags
Diffstat (limited to 'program/include/rcmail_output_html.php')
-rw-r--r--program/include/rcmail_output_html.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php
index 6100269b9..d8996edbf 100644
--- a/program/include/rcmail_output_html.php
+++ b/program/include/rcmail_output_html.php
@@ -873,6 +873,7 @@ class rcmail_output_html extends rcmail_output
// include a file
case 'include':
$old_base_path = $this->base_path;
+ if (!empty($attrib['skin_path'])) $attrib['skinpath'] = $attrib['skin_path'];
if ($path = $this->get_skin_file($attrib['file'], $skin_path, $attrib['skinpath'])) {
$this->base_path = preg_replace('!plugins/\w+/!', '', $skin_path); // set base_path to core skin directory (not plugin's skin)
$path = realpath($path);