force the use of UTF-8.
*
* @var array
*/
- protected $_required = array(
- 'charset'
- );
+ protected $_required = array();
/**
* This driver's display capabilities.
* rendered.
* @param array $conf Configuration:
* <pre>
- * 'charset' - (string) The local UI charset. [REQUIRED]
* 'temp_file' - (callback) A callback function that returns a temporary
* filename. Is passed one parameter: a prefix string.
* DEFAULT: Uses Horde_Util::getTempFile().
'<span ' .
($monospace ? 'class="' . $monospace . '">' : 'style="font-family:monospace">') .
htmlspecialchars($data) . '</span>',
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
return $this->_renderReturn(
file_get_contents($tmp_out),
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
return $this->_renderReturn(
$data,
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
return $this->_renderReturn(
(empty($header_output) ? '' : ('<div class="fixed mimeHeaders">' . $this->_textFilter(implode("<br />\n", $header_output), 'emails') . '</div>')),
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
'<span ' .
($monospace ? 'class="' . $monospace . '">' : 'style="font-family:monospace">') .
htmlspecialchars($data) . '</span>',
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
return $this->_renderReturn(
$data,
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
return $this->_renderReturn(
$this->_content,
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}
return $this->_renderReturn(
$data,
- 'text/html; charset=' . $this->getConfigParam('charset')
+ 'text/html; charset=UTF-8'
);
}