Thomas Bruederli
2012-12-30 5438956debdf254ed1b49ef144f1626007b9e669
Avoid double-quotation for header values
1 files modified
2 ■■■ changed files
plugins/show_additional_headers/show_additional_headers.php 2 ●●● patch | view | raw | blame | history
plugins/show_additional_headers/show_additional_headers.php
@@ -43,7 +43,7 @@
    $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;