vtigercrm 补丁

vtigercrm 补丁

http://hi.baidu.com/hxlapex/blog/item/9d0a84b20eda5147082302d1.html

vtiger的ajax實時聊天功能默認不支持中文的修改方法:

修改 modules/Home/chat.php

350行

將 $msg = htmlentities($msg);

修改為:$msg = htmlentities($msg,ENT_QUOTES, ‘UTF-8′);

保存即可




vtigercrm5.4.0首页及统计图鼠标悬停中文显示乱码问题主要是因为编码的问题

主要修改三个文件:

  • /modules/Dashboard/vertical_bargraph.php
  • /modules/Dashboard/pie_graph.php
  • /modules/Dashboard/horizontal_bargraph.php

其中搜索:$alts[]=htmlentities($name).”=%d”;
修改为:$alts[]=htmlentities($name,ENT_QUOTES,'UTF-8').”=$datay[$i]”;即可。

 

http://www.sunhopeit.net/blog-category/hot-technology/vtigercrm-charts-hover.html

你可能感兴趣的:(vtigercrm 补丁)