Character error when Exported to HTML (solved (: )
Posted: Mon Dec 24, 2012 3:17 am
Hi,
(İÇçÖöÜüŞşĞğ) letters error fixes.
to be corrected file;
change
or
(İÇçÖöÜüŞşĞğ) letters error fixes.
to be corrected file;
Code: Select all
doceboLms\admin\modules\report\report_tableprinter.php
Code: Select all
switch ($this->type) {
case _HTML: {
$this->buffer .= '<p id="report_info">'.$content_html.'</p><br />';
} break;
Code: Select all
switch ($this->type) {
case _HTML: {
$head='<head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head>';
$this->buffer .= $head.'<style>'.
'td, th { border:solid 1px black; } '.
'</style><table><tr><td>'.$content_html.'</td></tr></table><br /><br />';
} break;
Code: Select all
switch ($this->type) {
case _HTML: {
$head='<head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head>';
$this->buffer .= $head
.'<p id="report_info">'.$content_html.'</p><br />';
} break;