phpwind9.0开启html支持

有个vps快到期了,续费后想起来几年前在上面放了个phpwind程序。

登上去看了下,发现连网易云音乐都插入不了,html代码直接显示为文本了。

然后去爬文,发现phpwind从9.0后取消了html的支持。

最后找到了解决办法。http://www.phpwind.net/read/2911701

修改 的 PwThreadDisplay.php 这个文件  bulidRead($read, $lou) 这个函数,

把源代码:
if (!$read[‘usehtml’]) { $read[‘content’] = WindSecurity::escapeHTML($read[‘content’]); }

修改成

if (!$read[‘usehtml’]) { if ($this->users[$read[‘created_userid’]][‘groupid’] == ‘3’){ $read[‘content’] = $read[‘content’]; }else{ $read[‘content’] = WindSecurity::escapeHTML($read[‘content’]); } }

就可以了,其中 3 就是用户组的ID号,可以任意修改成你自己想要的组ID ,如果是多个组 就用 || 分割

 

演示:http://bbs.xianjian10.com/read.php?tid=11&fid=11