summaryrefslogtreecommitdiff
path: root/program/include/rcube_template.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-01-27 16:52:21 +0000
committerthomascube <thomas@roundcube.net>2012-01-27 16:52:21 +0000
commitf6a7491fa1332d43ac7167d50472aa514fd0caf2 (patch)
treeeb1b439362b76e4ffdd15efcde55f54351df7650 /program/include/rcube_template.php
parent77c779a2b807cdde0641267f272517738157edf4 (diff)
Fix special vars replacement in templates
Diffstat (limited to 'program/include/rcube_template.php')
-rw-r--r--program/include/rcube_template.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php
index 81dbb3d79..0fbd9dfac 100644
--- a/program/include/rcube_template.php
+++ b/program/include/rcube_template.php
@@ -528,6 +528,7 @@ class rcube_template extends rcube_html_page
{
$GLOBALS['__version'] = Q(RCMAIL_VERSION);
$GLOBALS['__comm_path'] = Q($this->app->comm_path);
+ $GLOBALS['__skin_path'] = Q($this->config['skin_path']);
return preg_replace_callback('/\$(__[a-z0-9_\-]+)/',
array($this, 'globals_callback'), $input);
}