发新话题
打印

[注意]论坛短信不能使用~~

[注意]论坛短信不能使用~~

论坛短信不能使用,请管理员看一下设置!

谢谢!

FOLLOW ME,虽是CS的专用语,可我希望在某一刻,能握住爱人的手跟她说:跟着我,follow me!

TOP

下个星期论坛改版了。现在的短信是有问题了。在努力解决中

TOP

短信问题初步查明:

找到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, "&amp;") ;
 text = text.replace(/"/g, "&quot;") ;
 text = text.replace(/</g, "&lt;") ;
 text = text.replace(/>/g, "&gt;") ;
 text = text.replace(/'/g, "&#146;") ;
 return text ;
}
function ReHTML(text)
{
 text = text.replace(/&amp;/g, "&") ;
 text = text.replace(/&quot;/g, '"') ;
 text = text.replace(/&lt;/g, "<") ;
 text = text.replace(/&gt;/g, ">") ;
 text = text.replace(/&#146;/g, "'") ;
 return text ;
}

如果还有问题,请联系。

生活的理想,就是为了理想的生活。

TOP

论坛功能已经恢复,感谢cybernaute

TOP

发新话题