短信问题初步查明:
找到inc/Main.js文件,到275行
将原有的:
//HTML过滤函数
function HTML(text)
{
text = text.replace(/&/g, "&") ;
text = text.replace(/\"/g, """) ;
text = text.replace(/</g, "<") ;
text = text.replace(/>/g, ">") ;
text = text.replace(/\'/g, "'") ;
return text ;
}
function ReHTML(text)
{
text = text.replace(/&/g, "&") ;
text = text.replace(/\"/g, '"') ;
text = text.replace(/</g, "<") ;
text = text.replace(/>/g, ">") ;
text = text.replace(/’/g, "'") ;
return text ;
}
替换成:
//HTML过滤函数
function HTML(text)
{
text = text.replace(/&/g, "&") ;
text = text.replace(/"/g, """) ;
text = text.replace(/</g, "<") ;
text = text.replace(/>/g, ">") ;
text = text.replace(/'/g, "’") ;
return text ;
}
function ReHTML(text)
{
text = text.replace(/&/g, "&") ;
text = text.replace(/"/g, '"') ;
text = text.replace(/</g, "<") ;
text = text.replace(/>/g, ">") ;
text = text.replace(/’/g, "'") ;
return text ;
}
如果还有问题,请联系。