diff options
author | alecpl <alec@alec.pl> | 2011-02-16 10:48:11 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-02-16 10:48:11 +0000 |
commit | 207cc0b9b3cfdfb29e4f02e83014320fd12eeb68 (patch) | |
tree | 2409f20c1b1d83413f39a274333df59137052617 /plugins/show_additional_headers | |
parent | 1a2754d18ca079ea55e4c272d7cdc9dc33c00179 (diff) |
- Applied plugin changes since 0.5-stable release
Diffstat (limited to 'plugins/show_additional_headers')
-rw-r--r-- | plugins/show_additional_headers/show_additional_headers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/show_additional_headers/show_additional_headers.php b/plugins/show_additional_headers/show_additional_headers.php index 1cbe690e9..0007ce335 100644 --- a/plugins/show_additional_headers/show_additional_headers.php +++ b/plugins/show_additional_headers/show_additional_headers.php @@ -44,7 +44,7 @@ class show_additional_headers extends rcube_plugin foreach ((array)$rcmail->config->get('show_additional_headers', array()) as $header) { $key = strtolower($header); if ($value = $p['headers']->others[$key]) - $p['output'][$key] = array('title' => $header, 'value' => $value); + $p['output'][$key] = array('title' => $header, 'value' => Q($value)); } return $p; |