本文参考 http://blog.csdn.net/xiang08/article/details/6206847
上面的说的一些修改代码的地方在 Mantis 1.2.17 中多数找不到。这里结合前人的方法,根据1.2.17的特点进行解决,方法如下:
Step 1 同参考文章,方法加载代码最后面即可。
修改csv_export.php
添加函数
function expChangeCode($str)
{
$str = mb_convert_encoding($str,"CP936","UTF-8");
return $str;
}
Step 2 注释的是原代码,注释下面的代码是需要新加的、一共修改两处第一处大概在101行、第二处大概在123行;
# echo $t_header; Line 101
echo expChangeCode($t_header);
echo expChangeCode($t_value);
#echo $t_function( $t_row );line 123
echo expChangeCode($t_function($t_row));
Step 3
重启服务即可。