summaryrefslogtreecommitdiff
path: root/program/include/rcube_output_html.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-09-17 15:12:40 +0200
committerAleksander Machniak <alec@alec.pl>2012-09-17 15:12:40 +0200
commit0f38fad2ef54cee36a686a4344f1b0bf28e445ef (patch)
tree80c887b73d7465fa9bb6ea6ff2b4f3effe169c48 /program/include/rcube_output_html.php
parentd66e50d6b50523f68109c46b074b36fb161da552 (diff)
Replace Q() with html::quote()
Diffstat (limited to 'program/include/rcube_output_html.php')
-rw-r--r--program/include/rcube_output_html.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_output_html.php b/program/include/rcube_output_html.php
index 2743e7705..6138e2a30 100644
--- a/program/include/rcube_output_html.php
+++ b/program/include/rcube_output_html.php
@@ -527,7 +527,7 @@ class rcube_output_html extends rcube_output
{
$GLOBALS['__version'] = html::quote(RCMAIL_VERSION);
$GLOBALS['__comm_path'] = html::quote($this->app->comm_path);
- $GLOBALS['__skin_path'] = Q($this->config->get('skin_path'));
+ $GLOBALS['__skin_path'] = html::quote($this->config->get('skin_path'));
return preg_replace_callback('/\$(__[a-z0-9_\-]+)/',
array($this, 'globals_callback'), $input);