summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-12-30 15:26:03 +0100
committerThomas Bruederli <thomas@roundcube.net>2012-12-30 15:26:03 +0100
commit5438956debdf254ed1b49ef144f1626007b9e669 (patch)
tree344bfac01373580af4889d9f5afb22cc8b2b89cd
parentcb0f030ae98a51398bd01e3d5075c8e939d944bc (diff)
Avoid double-quotation for header values
-rw-r--r--plugins/show_additional_headers/show_additional_headers.php2
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 69ac7f2a7..1375348c2 100644
--- a/plugins/show_additional_headers/show_additional_headers.php
+++ b/plugins/show_additional_headers/show_additional_headers.php
@@ -43,7 +43,7 @@ class show_additional_headers extends rcube_plugin
$rcmail = rcmail::get_instance();
foreach ((array)$rcmail->config->get('show_additional_headers', array()) as $header) {
if ($value = $p['headers']->get($header))
- $p['output'][$header] = array('title' => $header, 'value' => Q($value));
+ $p['output'][$header] = array('title' => $header, 'value' => $value);
}
return $p;